All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SRCRTTrackMatch.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 // \file SRCRTTrackMatch.h
3 ////////////////////////////////////////////////////////////////////////
4 #ifndef SRCRTTRACKMATCH_H
5 #define SRCRTTRACKMATCH_H
6 
7 namespace caf
8 {
9  /// Matching information between a TPC Track and a CRT Track
11  {
12  public:
13 
15  virtual ~SRCRTTrackMatch() {}
16  float time; ///< Time of the CRT Track [us]
17  float angle; ///< Relative angle between the TPC track and CRT track [rad]
18  };
19 
20 } // end namespace
21 
22 #endif // SRCRTTRACKMATCH_H
23 //////////////////////////////////////////////////////////////////////////////
float angle
Relative angle between the TPC track and CRT track [rad].
float time
Time of the CRT Track [us].
Matching information between a TPC Track and a CRT Track.