Class Reference for E1039 Core & Analysis Software
SQVertexing.h
Go to the documentation of this file.
1 #ifndef _SQVERTEXING_H
2 #define _SQVERTEXING_H
3 
4 #include <TRandom2.h>
5 #include <fun4all/SubsysReco.h>
6 
7 #include "GFField.h"
8 #include "GFTrack.h"
9 
10 class TString;
11 class TVector3;
12 class SQTrack;
13 class SQTrackVector;
14 class SQDimuonVector;
15 class SRecEvent;
16 class SRecTrack;
17 class SRecDimuon;
18 
19 class SQVertexing: public SubsysReco
20 {
21 public:
22  SQVertexing(const std::string& name = "SQVertexing", int sign1 = 1, int sign2 = -1);
23  ~SQVertexing();
24 
25  int Init(PHCompositeNode* topNode);
26  int InitRun(PHCompositeNode* topNode);
27  int process_event(PHCompositeNode* topNode);
28  int End(PHCompositeNode* topNode);
29 
30  void set_legacy_rec_container(const bool enable = true) { legacyContainer_in = enable; legacyContainer_out = enable; }
31  void set_legacy_in_container(const bool enable = true) { legacyContainer_in = enable; }
32  void set_legacy_out_container(const bool enable = true) { legacyContainer_out = enable; }
33  void set_single_retracking(const bool enable = true) { enableSingleRetracking = true; }
34 
35  void set_geom_file_name(const std::string& geomFileName) { geom_file_name = geomFileName; }
36 
37 private:
38  int InitField(PHCompositeNode* topNode);
39  int InitGeom(PHCompositeNode* topNode);
40  int MakeNodes(PHCompositeNode* topNode);
41  int GetNodes(PHCompositeNode* topNode);
42 
43  double swimTrackToVertex(SQGenFit::GFTrack& track, double z, TVector3* pos = nullptr, TVector3* mom = nullptr);
44  double refitTrkToVtx(SQGenFit::GFTrack& track, double z, TVector3* pos = nullptr, TVector3* mom = nullptr);
45  double refitTrkToVtx(SRecTrack* track, double z, TVector3* pos = nullptr, TVector3* mom = nullptr);
46  double findDimuonZVertex(SRecDimuon& dimuon, SQGenFit::GFTrack& track1, SQGenFit::GFTrack& track2);
47  double calcZsclp(double p);
48  bool processOneDimuon(SRecTrack* track1, SRecTrack* track2, SRecDimuon& dimuon);
49 
50  bool legacyContainer_in, legacyContainer_out;
51  bool enableSingleRetracking;
52 
53  int charge1, charge2;
54 
55  TRandom2 rndm;
56 
57  std::string geom_file_name;
58  SQGenFit::GFField* gfield;
59 
60  SRecEvent* recEvent;
61  SQTrackVector* recTrackVec;
62 
63  SQDimuonVector* recDimuonVec;
64 };
65 
66 #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
int InitRun(PHCompositeNode *topNode)
Definition: SQVertexing.cxx:85
int process_event(PHCompositeNode *topNode)
SQVertexing(const std::string &name="SQVertexing", int sign1=1, int sign2=-1)
Definition: SQVertexing.cxx:62
void set_legacy_out_container(const bool enable=true)
Definition: SQVertexing.h:32
int Init(PHCompositeNode *topNode)
Definition: SQVertexing.cxx:79
void set_legacy_rec_container(const bool enable=true)
Definition: SQVertexing.h:30
void set_single_retracking(const bool enable=true)
Definition: SQVertexing.h:33
void set_geom_file_name(const std::string &geomFileName)
Definition: SQVertexing.h:35
int End(PHCompositeNode *topNode)
Called at the end of all processing.
void set_legacy_in_container(const bool enable=true)
Definition: SQVertexing.h:31