StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StppJetAnalyzer.h
1 // -*- mode: c++;-*-
2 // $Id: StppJetAnalyzer.h,v 1.2 2008/08/02 19:23:08 tai Exp $
3 #ifndef STPPJETANALYZER_HH
4 #define STPPJETANALYZER_HH
5 
6 #include <StJetFinder/StProtoJet.h>
7 
8 #include <TObject.h>
9 
10 #include <list>
11 
12 class StJets;
13 
15 //
16 // This class exists solely for backword compatibility
17 //
19 class StppJetAnalyzer : public TObject {
20 
21 public:
22 
23  typedef std::list<StProtoJet> StjJetList;
24  StppJetAnalyzer(StjJetList& protoJets) : _protoJetList(protoJets), _stJets(0) {}
25  virtual ~StppJetAnalyzer() { }
26  StjJetList& getJets(void) { return _protoJetList; }
27  StJets* getmuDstJets(void) { return _stJets; };
28  void setmuDstJets(StJets* v) { _stJets = v; };
29 
30 private:
31 
32  StjJetList& _protoJetList;
33  StJets* _stJets;
34 
35  ClassDef(StppJetAnalyzer,1)
36 };
37 
38 
39 #endif // STPPJETANALYZER_HH
40 
Definition: StJets.h:24