Class Reference for E1039 Core & Analysis Software
VertexFit.h
Go to the documentation of this file.
1 #ifndef _VERTEXFIT_H
2 #define _VERTEXFIT_H
3 
4 /*
5 VertexFit.h
6 
7 Definition of the Vertex fit of dimuon events, this package is aimed at:
8 1. Use closest distance method to find z0 for two muon tracks
9 2. Use vertex fit to fit the z0 --- will be implemented in next version
10 
11 Reference: CBM-SOFT-note-2006-001, by S. Gorbunov and I. Kisel, with some minor
12 modifications
13 
14 Author: Kun Liu, liuk@fnal.gov
15 Created: 2-8-2012
16 */
17 
18 // Fun4All includes
19 #include <fun4all/SubsysReco.h>
20 #include <GlobalConsts.h>
21 
22 #include <iostream>
23 #include <vector>
24 
25 #include <TFile.h>
26 #include <TTree.h>
27 #include <TMatrixD.h>
28 
29 #include "KalmanUtil.h"
30 #include "SRecEvent.h"
31 #include "FastTracklet.h"
32 #include "GenFitExtrapolator.h"
33 
34 class KalmanTrack;
35 class KalmanFilter;
36 class PHField;
37 class TGeoManager;
38 class JobOptsSvc;
39 
40 class VtxPar
41 {
42 public:
44  {
45  _r.ResizeTo(3, 1);
46  _cov.ResizeTo(3, 3);
47 
48  _r.Zero();
49  _cov.Zero();
50  }
51 
52  void print()
53  {
54  SMatrix::printMatrix(_r, "Vertex position:");
55  SMatrix::printMatrix(_cov, "Vertex covariance:");
56  }
57 
58  TMatrixD _r;
59  TMatrixD _cov;
60 };
61 
62 class VertexFit : public SubsysReco
63 {
64 public:
65  VertexFit(const std::string& name = "VertexFit");
66  ~VertexFit();
67 
68  int Init(PHCompositeNode *topNode);
69  int InitRun(PHCompositeNode *topNode);
70  int process_event(PHCompositeNode *topNode);
71  int End(PHCompositeNode *topNode);
72 
74  void enableOptimization() { optimize = true; }
75  //Fitting in the target center (Abi)
76  void enable_fit_target_center() {fit_target_center = true;}
77 
79  void setControlParameter(int nMaxIteration, double tolerance)
80  {
81  _max_iteration = nMaxIteration;
82  _tolerance = tolerance;
83  }
84 
86  int setRecEvent(SRecEvent* recEvent, int sign1 = 1, int sign2 = -1);
87 
89  void init();
90  void addHypothesis(double z, double sigz = 50.) { z_start.push_back(z); sig_z_start.push_back(sigz); }
91  void setStartingVertex(double z_start, double sigz_start);
92 
94  void addTrack(int index, SRecTrack& _track);
95  void addTrack(int index, KalmanTrack& _track);
96  void addTrack(int index, TrkPar& _trkpar);
97 
99  int processOnePair();
100 
102  int findVertex();
103  double findDimuonVertexFast(SRecTrack& track1, SRecTrack& track2);
104  double findSingleMuonVertex(SRecTrack& _track);
105  double findSingleMuonVertex(Node& _node_start);
106  double findSingleMuonVertex(TrkPar& _trkpar_start);
107 
109  double getVertexZ0() { return _vtxpar_curr._r[2][0]; }
110  double getVXChisq() { return _chisq_vertex; }
111  double getKFChisq() { return _chisq_kalman; }
112  int getNTracks() { return _trkpar_curr.size(); }
113 
115  void updateVertex();
116 
118  void bookEvaluation(std::string evalFileName = "vtx_eval.root");
119  void fillEvaluation();
120 
122  void print();
123 
124  const std::string& get_eval_file_name() const {
125  return evalFileName;
126  }
127 
128  void set_eval_file_name(const std::string& evalFileName) {
129  this->evalFileName = evalFileName;
130  }
131 
132 private:
133 
134  int InitField(PHCompositeNode *topNode);
135 
136  int InitGeom(PHCompositeNode *topNode);
137 
138  int MakeNodes(PHCompositeNode *topNode);
139 
140  int GetNodes(PHCompositeNode *topNode);
141 
143  std::vector<TrkPar> _trkpar_curr;
144 
146  VtxPar _vtxpar_curr;
147 
149  Node _node_vertex;
150 
152  KalmanFilter* _kmfit;
153 
155  double _chisq_vertex;
156  double _chisq_kalman;
157 
159  std::vector<double> z_start;
160  std::vector<double> sig_z_start;
161 
163  std::vector<double> z_vertex;
164  std::vector<double> r_vertex;
165  std::vector<double> chisq_km;
166  std::vector<double> chisq_vx;
167 
169  int _max_iteration;
170  double _tolerance;
171 
173  GenFitExtrapolator _extrapolator;
174 
176  bool optimize;
177  bool fit_target_center;
178 
179  TGeoManager * _t_geo_manager;
180 
181  SRecEvent* _recEvent;
182 
184  std::string evalFileName;
185  TFile* evalFile;
186  TTree* evalTree;
187 
188  int runID;
189  int eventID;
190  int targetPos;
191  int nPos;
192  int nNeg;
193  int p_idx_eval;
194  int m_idx_eval;
195  int choice_eval;
196  int choice_by_kf_eval;
197  int choice_by_vx_eval;
198 
199  int nStart;
200  double z_start_eval[50];
201  int nIter_eval[50];
202  double chisq_kf_eval[50];
203  double chisq_vx_eval[50];
204  double z_vertex_eval[50];
205  double r_vertex_eval[50];
206 
207  double m_chisq_kf_eval;
208  double s_chisq_kf_eval;
209  double m_z_vertex_eval;
210  double s_z_vertex_eval;
211 };
212 
213 #endif
transient DST object for field storage and access
Definition: PHField.h:14
static void printMatrix(const TMatrixD &m)
Definition: KalmanUtil.cxx:17
int process_event(PHCompositeNode *topNode)
Definition: VertexFit.cxx:185
int setRecEvent(SRecEvent *recEvent, int sign1=1, int sign2=-1)
Set the SRecEvent, main external call the use vertex fit.
Definition: VertexFit.cxx:259
void fillEvaluation()
Definition: VertexFit.cxx:698
void setControlParameter(int nMaxIteration, double tolerance)
Set the convergence control parameters.
Definition: VertexFit.h:79
void addHypothesis(double z, double sigz=50.)
Definition: VertexFit.h:90
double findDimuonVertexFast(SRecTrack &track1, SRecTrack &track2)
Definition: VertexFit.cxx:413
const std::string & get_eval_file_name() const
Definition: VertexFit.h:124
double findSingleMuonVertex(SRecTrack &_track)
Definition: VertexFit.cxx:635
void set_eval_file_name(const std::string &evalFileName)
Definition: VertexFit.h:128
void enableOptimization()
Enable the optimization of final dimuon vertex z position.
Definition: VertexFit.h:74
void enable_fit_target_center()
Definition: VertexFit.h:76
int findVertex()
Find the primary vertex.
Definition: VertexFit.cxx:546
double getKFChisq()
Definition: VertexFit.h:111
void print()
Debugging output.
Definition: VertexFit.cxx:754
void bookEvaluation(std::string evalFileName="vtx_eval.root")
Evaluation.
Definition: VertexFit.cxx:672
void addTrack(int index, SRecTrack &_track)
Add one track parameter set into the fit.
Definition: VertexFit.cxx:531
void updateVertex()
Core function, update the vertex prediction according to the track info.
Definition: VertexFit.cxx:601
double getVXChisq()
Definition: VertexFit.h:110
void init()
Initialize and reset.
Definition: VertexFit.cxx:441
int Init(PHCompositeNode *topNode)
Definition: VertexFit.cxx:140
int InitRun(PHCompositeNode *topNode)
Definition: VertexFit.cxx:147
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: VertexFit.cxx:205
void setStartingVertex(double z_start, double sigz_start)
Definition: VertexFit.cxx:458
VertexFit(const std::string &name="VertexFit")
Definition: VertexFit.cxx:89
int getNTracks()
Definition: VertexFit.h:112
double getVertexZ0()
Gets.
Definition: VertexFit.h:109
int processOnePair()
After setting both tracks and hypothesis, start the iteration.
Definition: VertexFit.cxx:474
TMatrixD _r
Definition: VertexFit.h:58
void print()
Definition: VertexFit.h:52
VtxPar()
Definition: VertexFit.h:43
TMatrixD _cov
Definition: VertexFit.h:59