EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
CbmRichRingTrackAssignBase.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file CbmRichRingTrackAssignBase.h
1 
10 #ifndef CBM_RICH_RING_TRACK_ASSIGN_BASE
11 #define CBM_RICH_RING_TRACK_ASSIGN_BASE
12 
13 class TClonesArray;
14 
24 {
25 public:
30  fMaxDistance(100.),
32  {
33 
34  }
35 
40 
44  virtual void Init() { }
45 
52  virtual void DoAssign(
53  TClonesArray* rings,
54  TClonesArray* richProj) = 0;
55 
56 protected:
57 
58  double fMaxDistance; // max. distance between ring center and track extrapolation
59  int fMinNofHitsInRing; // min number of hits per ring
60 
61 private:
62 
67 
72 };
73 
74 #endif
75