Class Reference for E1039 Core & Analysis Software
SQTruthVertexing.h
Go to the documentation of this file.
1 #ifndef _SQTRUTHVERTEXING_H
2 #define _SQTRUTHVERTEXING_H
3 
4 #include <fun4all/SubsysReco.h>
5 #include <TRandom1.h>
6 
7 class TVector3;
8 class SQTrack;
9 class SQTrackVector;
10 class SQDimuonVector;
11 class SRecEvent;
12 class SRecTrack;
13 class SRecDimuon;
14 
16 
40 {
41 public:
42  SQTruthVertexing(const std::string& name = "SQTruthVertexing");
44 
45  int Init(PHCompositeNode* topNode);
46  int InitRun(PHCompositeNode* topNode);
47  int process_event(PHCompositeNode* topNode);
48  int End(PHCompositeNode* topNode);
49 
50  void set_legacy_rec_container(const bool enable = true) { legacyContainer = enable; }
51  void set_vtx_smearing(const double r) { vtxSmearing = r; }
52 
53 private:
54  int MakeNodes(PHCompositeNode* topNode);
55  int GetNodes(PHCompositeNode* topNode);
56 
57  bool buildRecDimuon(double z_vtx, SRecTrack* posTrack, SRecTrack* negTrack, SRecDimuon* dimuon);
58  double swimTrackToVertex(SRecTrack* track, double z, TVector3* pos = nullptr, TVector3* mom = nullptr);
59 
60  TRandom1 rndm;
61 
62  bool legacyContainer;
63  double vtxSmearing;
64 
65  SRecEvent* recEvent;
66  SQTrackVector* recTrackVec;
67  SQTrackVector* truthTrackVec;
68  SQDimuonVector* truthDimuonVec;
69 
70  SQDimuonVector* recDimuonVec;
71 };
72 
73 #endif
An SQ interface class to hold a list of SQDimuon objects.
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 create dimuons based on the truth vertex information.
int Init(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
SQTruthVertexing(const std::string &name="SQTruthVertexing")
int InitRun(PHCompositeNode *topNode)
void set_vtx_smearing(const double r)
void set_legacy_rec_container(const bool enable=true)