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 <set>
6 #include <fun4all/SubsysReco.h>
7 #include <TString.h>
8 #include <TVector3.h>
9 #include <ktracker/SRecEvent.h>
10 #include <ktracker/FastTracklet.h>
11 #include <geom_svc/GeomSvc.h>
13 
14 
15 class TFile;
16 class TTree;
17 class SQHitVector;
18 class SQTrackVector;
19 class SQDimuonVector;
20 
21 class AnaModule: public SubsysReco
22 {
23 public:
24  AnaModule(const std::string& name = "AnaModule");
25  virtual ~AnaModule();
26 
27  int Init(PHCompositeNode* topNode);
28  int InitRun(PHCompositeNode* topNode);
29  int process_event(PHCompositeNode* topNode);
30  int End(PHCompositeNode* topNode);
31 
32  void set_output_filename(const TString& n) { saveName = n; }
33  void registerDetector(TString name);
34 
35 private:
36  int GetNodes(PHCompositeNode* topNode);
37  void MakeTree();
38 
39  SQHit* findHit(int detectorID, int elementID);
40  std::set<int> detectorIDs;
41 
42  GeomSvc* p_geomSvc;
43 
44  // Input
45  SQHitVector* hitVector;
46  TrackletVector* trackletVec;
47 
48  // Output
49  TString saveName;
50  TFile* saveFile;
51  TTree* saveTree;
52 
53  int eventID;
54  int detectorID;
55  int elementID_exp;
56  int elementID_closest;
57  double x_exp;
58  double y_exp;
59  int nHits;
60  double chisq;
61 };
62 
63 #endif
AnaModule()
Definition: AnaModule.h:15
void set_output_filename(const TString &n)
Definition: AnaModule.h:32
void registerDetector(TString name)
Definition: AnaModule.cxx:106
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: AnaModule.cxx:70
int Init(PHCompositeNode *topNode)
Definition: AnaModule.cxx:20
int InitRun(PHCompositeNode *topNode)
Definition: AnaModule.cxx:25
int process_event(PHCompositeNode *topNode)
Definition: AnaModule.cxx:35
virtual ~AnaModule()
Definition: AnaModule.cxx:17
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 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 a list of SQTrack objects.
Definition: SQTrackVector.h:19