Class Reference for E1039 Core & Analysis Software
AnaSimDimuon.h
Go to the documentation of this file.
1 #ifndef _ANA_SIM_DIMUON__H_
2 #define _ANA_SIM_DIMUON__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 AnaSimDimuon: 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  std::map<int, int> m_proc_id_cnt;
35  std::map<int, int> m_part_id_1_cnt;
36  std::map<int, int> m_part_id_2_cnt;
37  std::map<int, int> m_part_id_3_cnt;
38  std::map<int, int> m_part_id_4_cnt;
39  std::map<std::string, int> m_part_id_12_cnt;
40 
41  public:
42  AnaSimDimuon(const std::string& name="AnaSimDimuon");
43  virtual ~AnaSimDimuon() {;}
44  int Init(PHCompositeNode *topNode);
45  int InitRun(PHCompositeNode *topNode);
46  int process_event(PHCompositeNode *topNode);
47  int End(PHCompositeNode *topNode);
48 
49  private:
50  typedef std::map<int, int> IdMap_t; // For now the key is not ID but index.
51  void FindDimuonRelation(IdMap_t& id_map);
52 };
53 
54 #endif // _ANA_SIM_DIMUON__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: AnaSimDimuon.h:17
AnaSimDimuon(const std::string &name="AnaSimDimuon")
Definition: AnaSimDimuon.cc:18
virtual ~AnaSimDimuon()
Definition: AnaSimDimuon.h:43
int process_event(PHCompositeNode *topNode)
Definition: AnaSimDimuon.cc:52
int Init(PHCompositeNode *topNode)
Definition: AnaSimDimuon.cc:24
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int InitRun(PHCompositeNode *topNode)
Definition: AnaSimDimuon.cc:29
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