EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
CbmGlobalTrackFitter.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file CbmGlobalTrackFitter.h
1 // ------------------------------------------------------------------
2 // ----- CbmGlobalTrackFitter -----
3 // ----- Created 07/03/2006 by D.Kresan -----
4 // ------------------------------------------------------------------
5 #ifndef CBMGLOBALTRACKFITTER
6 #define CBMGLOBALTRACKFITTER
7 
8 #include "TObject.h"
9 
10 class CbmGlobalTrack;
11 
12 
13 class CbmGlobalTrackFitter : public TObject {
14 
15 protected:
16  Int_t fVerbose; // Verbosity level
17 
18 public:
20  virtual ~CbmGlobalTrackFitter() {};
21 
22  virtual void Init() {};
23  virtual void DoFit(CbmGlobalTrack* glbTrack) = 0;
24 
25  inline void SetVerbose(Int_t verbose) { fVerbose = verbose; }
26 
28 };
29 
30 
31 #endif