Class Reference for E1039 Core & Analysis Software
TruthNodeMaker.h
Go to the documentation of this file.
1 #ifndef _TRUTH_NODE_MAKER__H_
2 #define _TRUTH_NODE_MAKER__H_
3 #include <fun4all/SubsysReco.h>
4 #include <map>
5 #include <string>
6 
7 class TVector3;
8 class TLorentzVector;
9 namespace HepMC {
10  class GenParticle;
11 };
12 class PHHepMCGenEventMap;
14 class PHG4HitContainer;
15 class SQEvent;
16 class SQMCEvent;
17 class SQTrack;
18 class SQTrackVector;
19 class SQDimuonVector;
20 class SQHitVector;
21 class SRecEvent;
22 class SQHit;
23 class GeomSvc;
24 
26 
41 class TruthNodeMaker: public SubsysReco {
42  // input nodes
43  PHHepMCGenEventMap* genevtmap;
44  PHG4TruthInfoContainer* g4true;
45  SQHitVector* m_vec_hit;
46  SRecEvent* m_rec_evt;
47  SQTrackVector* m_vec_rec_trk;
48  std::map<int, PHG4HitContainer*> m_g4hc;
49 
50  // output nodes
51  SQEvent* m_evt;
52  SQMCEvent* m_mcevt;
53  SQTrackVector* m_vec_trk;
54  SQDimuonVector* m_vec_dim;
55 
56  int m_job_id;
57 
58  // rec input container type
59  bool m_legacy_rec_container;
60  bool m_do_truthtrk_tagging;
61  bool m_do_evt_header;
62 
63  // true - rec mathcing nhits threshold
64  double m_matching_threshold;
65 
66  public:
68  virtual ~TruthNodeMaker();
69  int Init(PHCompositeNode *topNode);
70  int InitRun(PHCompositeNode *topNode);
71  int process_event(PHCompositeNode *topNode);
72  int End(PHCompositeNode *topNode);
73 
74  void SetJobID(const int job_id) { m_job_id = job_id; }
75  int GetJobID() const { return m_job_id; }
76 
77  void set_legacy_rec_container(bool b = true) { m_legacy_rec_container = b; }
78  void set_matching_threshold(double threshold) { m_matching_threshold = threshold; }
79 
80  private:
81  int GetNodes(PHCompositeNode *topNode);
82  int MakeNodes(PHCompositeNode *topNode);
83 
84  bool FindHitAtStation(int target_detIDs[], int trkid, const std::vector<SQHit*>& hitvec, TVector3& pos, TLorentzVector& mom);
85  int FindCommonHitIDs(std::vector<int>& hitidvec1, std::vector<int>& hitidvec2);
86 };
87 
88 #endif /* _TRUTH_NODE_MAKER__H_ */
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
PHHepMCGenEventMap is collection of HEPMC events input into this simulation map of embedding ID -> PH...
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
An SQ interface class to hold one true or reconstructed track.
Definition: SQTrack.h:8
An SubsysReco module to create a set of SQ nodes for the simulation true info.
void set_legacy_rec_container(bool b=true)
int process_event(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
void SetJobID(const int job_id)
void set_matching_threshold(double threshold)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int GetJobID() const
virtual ~TruthNodeMaker()
int Init(PHCompositeNode *topNode)