Class Reference for E1039 Core & Analysis Software
AnaSimDst.h
Go to the documentation of this file.
1 #ifndef _ANA_SIM_DST__H_
2 #define _ANA_SIM_DST__H_
3 #include <map>
4 #include <TVector3.h>
5 #include <TLorentzVector.h>
6 #include <fun4all/SubsysReco.h>
7 #include "TreeData.h"
8 class TFile;
9 class TTree;
10 class SQEvent;
11 class SRecEvent;
12 class SQMCEvent;
13 class SQTrackVector;
14 class SQDimuonVector;
15 
17 class AnaSimDst: public SubsysReco {
19  SQEvent * mi_evt;
20  SRecEvent * mi_srec;
21  SQMCEvent * mi_evt_true;
22  SQTrackVector * mi_vec_trk;
23  SQDimuonVector* mi_vec_dim;
24 
26  TFile* mo_file;
27  TTree* mo_tree;
28  EventData mo_evt;
29  TrackList mo_trk_true;
30  TrackList mo_trk_reco;
31  DimuonList mo_dim_true;
32  DimuonList mo_dim_reco;
33 
34  public:
35  AnaSimDst();
36  virtual ~AnaSimDst() {;}
37  int Init(PHCompositeNode *topNode);
38  int InitRun(PHCompositeNode *topNode);
39  int process_event(PHCompositeNode *topNode);
40  int End(PHCompositeNode *topNode);
41 
42  private:
43  typedef std::map<int, int> IdMap_t; // For now the key is not ID but index.
44  void FindTrackRelation (IdMap_t& id_map);
45  void FindDimuonRelation(IdMap_t& id_map);
46 };
47 
48 #endif /* _ANA_SIM_DST__H_ */
std::vector< DimuonData > DimuonList
Definition: TreeData.h:54
std::vector< TrackData > TrackList
Definition: TreeData.h:53
An example class to analyze the simulated uDST file.
Definition: AnaSimDst.h:17
int process_event(PHCompositeNode *topNode)
Definition: AnaSimDst.cc:48
virtual ~AnaSimDst()
Definition: AnaSimDst.h:36
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: AnaSimDst.cc:138
int Init(PHCompositeNode *topNode)
Definition: AnaSimDst.cc:20
int InitRun(PHCompositeNode *topNode)
Definition: AnaSimDst.cc:25
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 one simulated-event header.
Definition: SQMCEvent.h:12
An SQ interface class to hold a list of SQTrack objects.
Definition: SQTrackVector.h:19