BmnRoot
Loading...
Searching...
No Matches
CbmL1TrackPar.h
Go to the documentation of this file.
1#ifndef CbmL1TrackPar_H
2#define CbmL1TrackPar_H
3
4#include "CbmKFTrackInterface.h"
5
7{
8 public:
10 chi2(0),NDF(0),mass(0),is_electron(0){}
11 double *GetTrack(){ return T; }
12 double *GetCovMatrix(){ return C; }
13 double &GetRefChi2(){ return chi2; }
14 int &GetRefNDF(){ return NDF; }
15 double GetMass(){ return mass; }
16 bool IsElectron(){ return is_electron; }
17
18 double T[6], C[15];
19 double chi2;
20 int NDF ;
21 double mass; // mass hypothesis
22 bool is_electron;
23};
24
25#endif
double & GetRefChi2()
array[15] of covariance matrix
int & GetRefNDF()
Chi^2 after fit.
double C[15]
double GetMass()
double * GetCovMatrix()
array[6] of track parameters(x,y,tx,ty,qp,z)
bool IsElectron()
Mass hypothesis.
double * GetTrack()
Is it electron.