PandaRoot
PndSTEBTof.h
Go to the documentation of this file.
1 
11 #ifndef PndSTEBTof_H_
12 #define PndSTEBTof_H_
13 
14 #include "PndSTETrackBase.h"
15 #include "PndSciTHit.h"
16 #include "TClonesArray.h"
17 
18 #include <vector>
19 
20 class TClonesArray;
21 
22 class PndSTEBTof : public PndSTETrackBase {
23  public:
26 
28  virtual ~PndSTEBTof(){
29 
30  };
31 
32  // TODO: THis funcction might need to be changed since one do not want PID detector hits in a track
39  void AddHit(TClonesArray *initialTrackArray, TClonesArray *initialTrackCandArray, TClonesArray *initialHitArray);
40 
41  private:
50  PndSciTHit *FindBestHitWithHelix(PndTrack btofTrack, TClonesArray *inputHitArray);
51 
52  ClassDef(PndSTEBTof, 1);
53 };
54 
55 #endif /* PndSTEBTof_H_ */
void AddHit(TClonesArray *initialTrackArray, TClonesArray *initialTrackCandArray, TClonesArray *initialHitArray)
Function to add the chosen hit to a track candidate.
virtual ~PndSTEBTof()
Definition: PndSTEBTof.h:28