Class Reference for E1039 Core & Analysis Software
SQTrackletFitter.h
Go to the documentation of this file.
1 #ifndef _SQTRACKLETFITTER_H
2 #define _SQTRACKLETFITTER_H
3 
4 #include <Math/Factory.h>
5 #include <Math/Minimizer.h>
6 #include <Math/Functor.h>
7 
8 #include "FastTracklet.h"
9 
11 {
12 public:
13  SQTrackletFitter(bool KMAG_ON = true);
15 
17  int fit(Tracklet& tracklet);
18 
20  double getParameter(int idx) { return minimizer->X()[idx]; }
21  double getParaError(int idx) { return minimizer->Errors()[idx]; }
22 
24  double getChi2() { return minimizer->MinValue();}
25 
26 private:
28  Tracklet tracklet_fit;
29 
31  double tx_max;
32  double ty_max;
33  double x0_max;
34  double y0_max;
35  double invP_min, invP_max;
36 
38  unsigned int nParameters;
39  ROOT::Math::Minimizer* minimizer;
40  ROOT::Math::Functor fcn;
41 };
42 
43 #endif
double getParameter(int idx)
retrieve the fit parameter value and error
double getChi2()
retrieve the chi2
SQTrackletFitter(bool KMAG_ON=true)
int fit(Tracklet &tracklet)
core function - fit the tracklet and return the fit status
double getParaError(int idx)