All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SRTrkChi2PID.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 // \file SRTrkChi2PID.h
3 ////////////////////////////////////////////////////////////////////////
4 #ifndef SRTRKCHI2PID_H
5 #define SRTRKCHI2PID_H
6 
7 namespace caf
8 {
9  /// Track PID from dE/dx v. residual range Chi2
11  {
12  public:
13 
14  SRTrkChi2PID();
15  virtual ~SRTrkChi2PID();
16 
17  int pdg; ///< Min Chi2 pdg
18  int pid_ndof; ///< Number of degress of freedom in Chi2 PID fit
19  float chi2_muon; ///< dE/dx v. residual range Chi2 (muon hypothesis)
20  float chi2_pion; ///< dE/dx v. residual range Chi2 (pion hypothesis)
21  float chi2_kaon; ///< dE/dx v. residual range Chi2 (kaon hypothesis)
22  float chi2_proton; ///< dE/dx v. residual range Chi2 (proton hypothesis)
23 
24  float pida; ///< PIDA
25 
26  void setDefault();
27  };
28 
29 } // end namespace
30 
31 #endif // SRTRKCHI2PID_H
32 //////////////////////////////////////////////////////////////////////////////
float chi2_kaon
dE/dx v. residual range Chi2 (kaon hypothesis)
Definition: SRTrkChi2PID.h:21
float chi2_proton
dE/dx v. residual range Chi2 (proton hypothesis)
Definition: SRTrkChi2PID.h:22
float pida
PIDA.
Definition: SRTrkChi2PID.h:24
float chi2_pion
dE/dx v. residual range Chi2 (pion hypothesis)
Definition: SRTrkChi2PID.h:20
int pid_ndof
Number of degress of freedom in Chi2 PID fit.
Definition: SRTrkChi2PID.h:18
virtual ~SRTrkChi2PID()
Track PID from dE/dx v. residual range Chi2.
Definition: SRTrkChi2PID.h:10
float chi2_muon
dE/dx v. residual range Chi2 (muon hypothesis)
Definition: SRTrkChi2PID.h:19
int pdg
Min Chi2 pdg.
Definition: SRTrkChi2PID.h:17