1 #ifndef EndcapHelixFitter_h 
    2 #define EndcapHelixFitter_h 
    4 #include "EVENT/Track.h" 
    5 #include "EVENT/TrackerHit.h" 
   27       message = 
"EndcapHelixFitterException: " + text ;
 
   30    virtual const char* what() 
const  throw() { 
return  message.c_str() ; } 
 
   53    double getChi2(){ 
return _chi2; }
 
   54    int getNdf(){ 
return _Ndf; }
 
   56    float getOmega(){ 
return _omega; }
 
   57    float getTanLambda(){ 
return _tanLambda; }
 
   58    float getPhi0(){ 
return _phi0; }
 
   59    float getD0(){ 
return _d0; }
 
   60    float getZ0(){ 
return _z0; }
 
   77    std::vector< TrackerHit* > _trackerHits;
 
A class to make it quick to fit a track or hits and get back the chi2 and Ndf values and also bundle ...
Definition: EndcapHelixFitter.h:44
 
Definition: EndcapHelixFitter.h:15