All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SRTrkRange.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 // \file SRTrkRange.h
3 ////////////////////////////////////////////////////////////////////////
4 #ifndef SRTRKRANGE_H
5 #define SRTRKRANGE_H
6 
7 namespace caf
8 {
9  /// Representation of the reco momentum and PID a rb::Track from range
10  class SRTrkRange
11  {
12  public:
13 
14  SRTrkRange();
15  virtual ~SRTrkRange();
16 
17  float p_muon; ///< momentum estimate from trk range (muon hypothesis)
18  float p_pion; ///< momentum estimate from trk range (pion hypothesis)
19  float p_proton; ///< momentum estimate from trk range (proton hypothesis)
20 
21  void setDefault();
22  };
23 
24 } // end namespace
25 
26 #endif // SRTRKRANGE_H
27 //////////////////////////////////////////////////////////////////////////////
float p_pion
momentum estimate from trk range (pion hypothesis)
Definition: SRTrkRange.h:18
Representation of the reco momentum and PID a rb::Track from range.
Definition: SRTrkRange.h:10
float p_muon
momentum estimate from trk range (muon hypothesis)
Definition: SRTrkRange.h:17
virtual ~SRTrkRange()
Definition: SRTrkRange.cxx:19
float p_proton
momentum estimate from trk range (proton hypothesis)
Definition: SRTrkRange.h:19