Class Reference for E1039 Core & Analysis Software
AnaModule.h
Go to the documentation of this file.
1 #ifndef _ANA_Module__H_
2 #define _ANA_Module__H_
3 
4 #include <map>
5 #include <fun4all/SubsysReco.h>
6 #include <TString.h>
7 #include <TVector3.h>
8 #include <ktracker/SRecEvent.h>
9 
10 class TFile;
11 class TTree;
12 class SQHitVector;
13 class SQTrackVector;
14 class SQDimuonVector;
15 
16 class AnaModule: public SubsysReco
17 {
18 public:
19  AnaModule(const std::string& name = "AnaModule");
20  virtual ~AnaModule();
21 
22  int Init(PHCompositeNode* topNode);
23  int InitRun(PHCompositeNode* topNode);
25  int End(PHCompositeNode* topNode);
26 
27  void set_output_filename(const TString& n) { saveName = n; }
28  void set_legacy_rec_container(bool b) { legacyContainer = b; }
29 
30 private:
31  int GetNodes(PHCompositeNode* topNode);
32  void MakeTree();
33 
34  bool legacyContainer;
35 
36  // Input
37  SQHitVector* hitVector;
38  SQTrackVector* trackVector;
39  SQDimuonVector* dimuonVector;
40 
41  SRecEvent* recEvent;
42  SQTrackVector* recTrackVector;
43  SQDimuonVector* recDimuonVector;
44 
45  // Output
46  TString saveName;
47  TFile* saveFile;
48  int eventID;
49 
50  TTree* saveTree1;
51  int charge;
52  TVector3* pos1;
53  TVector3* pos2;
54  TVector3* pos3;
55  TVector3* posvtx;
56  TVector3* mom1;
57  TVector3* mom2;
58  TVector3* mom3;
59  TVector3* momvtx;
60  TVector3* rec_mom1;
61  TVector3* rec_momvtx;
62  TVector3* rec_posvtx;
63  TVector3* rec_momtgt;
64  TVector3* rec_postgt;
65 
66  TTree* saveTree2;
67  TVector3* pmom;
68  TVector3* nmom;
69  TVector3* rec_pmom;
70  TVector3* rec_nmom;
71  TVector3* rec_ppos;
72  TVector3* rec_npos;
73  TVector3* rec_vtx;
74  TVector3* vtx;
75  double mass;
76  double rec_mass;
77 
78 };
79 
80 #endif
void set_legacy_rec_container(bool b)
Definition: AnaModule.h:28
void set_output_filename(const TString &n)
Definition: AnaModule.h:27
virtual ~AnaModule()
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int Init(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
AnaModule(const std::string &name="AnaModule")
int process_event(PHCompositeNode *topNode)
An SQ interface class to hold a list of SQDimuon objects.
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32
An SQ interface class to hold a list of SQTrack objects.
Definition: SQTrackVector.h:19