All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SRCRTTrack.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 // \file SRCRTTrack.h
3 ////////////////////////////////////////////////////////////////////////
4 #ifndef SRCRTTRACK_H
5 #define SRCRTTRACK_H
6 
8 
9 namespace caf
10 {
11  class SRCRTTrack
12  {
13  public:
14 
15  SRCRTTrack();
16  virtual ~SRCRTTrack() {}
17 
18  SRCRTHit hita; //!< First hit in CRT track
19  SRCRTHit hitb; //!< Second git in CRT Track
20  float time; //!< Combined time of CRT Track
21  };
22 
23 } // end namespace
24 
25 #endif // SRCRTTRACK_H
26 //////////////////////////////////////////////////////////////////////////////
virtual ~SRCRTTrack()
Definition: SRCRTTrack.h:16
float time
Combined time of CRT Track.
Definition: SRCRTTrack.h:20
A hit from the CRT.
Definition: SRCRTHit.h:12
SRCRTHit hita
First hit in CRT track.
Definition: SRCRTTrack.h:18
SRCRTHit hitb
Second git in CRT Track.
Definition: SRCRTTrack.h:19