All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SRCRTHitMatch.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 // \file SRCRTHitMatch.h
3 ////////////////////////////////////////////////////////////////////////
4 #ifndef SRCRTHITMATCH_H
5 #define SRCRTHITMATCH_H
6 
9 
10 namespace caf
11 {
12  /// Matching information between a TPC Track and a CRT Hit
14  {
15  public:
16 
17  SRCRTHitMatch();
18  virtual ~SRCRTHitMatch() {}
19  SRCRTHit hit; ///< The CRT hit
20  float distance; ///< Distance from the projected TPC track to the CRT hit [cm]
21  };
22 
23 } // end namespace
24 
25 #endif // SRCRTHITMATCH_H
26 //////////////////////////////////////////////////////////////////////////////
SRCRTHit hit
The CRT hit.
Definition: SRCRTHitMatch.h:19
float distance
Distance from the projected TPC track to the CRT hit [cm].
Definition: SRCRTHitMatch.h:20
Matching information between a TPC Track and a CRT Hit.
Definition: SRCRTHitMatch.h:13
A hit from the CRT.
Definition: SRCRTHit.h:12
virtual ~SRCRTHitMatch()
Definition: SRCRTHitMatch.h:18