Class Reference for E1039 Core & Analysis Software
SimpleTree.h
Go to the documentation of this file.
1 #ifndef _SIMPLE_TREE_H_
2 #define _SIMPLE_TREE_H_
3 #include <fun4all/SubsysReco.h>
4 #include <ktracker/FastTracklet.h>
5 #include <geom_svc/GeomSvc.h>
7 #include "TreeData.h"
8 
9 class TFile;
10 class TTree;
11 class SQEvent;
12 class SQMCEvent;
13 class SQTrackVector;
14 class SQDimuonVector;
15 class SQHitVector;
16 class GeomSvc;
17 class Tracklet;
18 class SQHit;
19 
20 class SimpleTree: public SubsysReco
21 {
22 
23  private:
24  int GetNodes(PHCompositeNode *topNode);
25  void MakeTree();
26  SQHit* findHit(const int detID, const int eleID);
27 
29  GeomSvc *gs;
30 
32  SQMCEvent * sqMCEvent;
33  SQEvent * sqEvent;
34  SQTrackVector * sqTrackVector;
35  TrackletVector* trackletVector;
36  SQDimuonVector* sqDimuonVector;
37  SQHitVector * sqHitVector;
38 
40  TFile* file;
41  TTree* tree;
42  MCEventData dMCEvent;
43  EventData dEvent;
44  DimuonList lDimuon;
45  TrackList lTrack;
46  HitList lHit;
47  TrackletList lTracklet;
48 
49  int nDimuons;
50  int nHits;
51  int nTracks;
52  int nTracklets;
53 
54  public:
55  SimpleTree(const std::string& name = "SimpleTree");
56  virtual ~SimpleTree() {;}
57  int Init(PHCompositeNode *topNode);
58  int InitRun(PHCompositeNode *topNode);
59  int process_event(PHCompositeNode *topNode);
60  int End(PHCompositeNode *topNode);
61  void SetOutput(const char* out_name);
62 };
63 
64 #endif /* _SIMPLE_TREE_H_ */
std::vector< HitData > HitList
Definition: TreeData.h:34
std::vector< DimuonData > DimuonList
Definition: TreeData.h:54
std::vector< TrackData > TrackList
Definition: TreeData.h:53
std::vector< TrackletData > TrackletList
Definition: TreeData.h:109
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
An SQ interface class to hold a list of SQDimuon objects.
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
An SQ interface class to hold one simulated-event header.
Definition: SQMCEvent.h:12
An SQ interface class to hold a list of SQTrack objects.
Definition: SQTrackVector.h:19
int process_event(PHCompositeNode *topNode)
Definition: SimpleTree.cc:48
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: SimpleTree.cc:193
SimpleTree(const std::string &name="SimpleTree")
Definition: SimpleTree.cc:24
int Init(PHCompositeNode *topNode)
Definition: SimpleTree.cc:30
int InitRun(PHCompositeNode *topNode)
Definition: SimpleTree.cc:36
virtual ~SimpleTree()
Definition: SimpleTree.h:56
void SetOutput(const char *out_name)
Definition: SimpleTree.cc:220