ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ECCEFastPIDMap.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file ECCEFastPIDMap.h
1 // Tell emacs that this is a C++ source
2 // -*- C++ -*-.
3 #ifndef ECCEFastPIDMap_H
4 #define ECCEFastPIDMap_H
5 
7 
8 #include <fun4all/SubsysReco.h>
9 
10 #include <map>
11 #include <string>
12 
13 class PHCompositeNode;
14 
16 public:
17  ECCEFastPIDMap(const std::string &name = "ECCEFastPIDMap");
18 
19  virtual ~ECCEFastPIDMap();
20 
21  typedef std::map<EICPIDDefs::PIDCandidate, float>
23 
25  getFastSmearLogLikelihood(int truth_pid, const double momentum,
26  const double theta) const = 0;
27 
28  // EICPIDDefs::PIDCandidate getFastSmearPID(int truth_pid, const double
29  // momentum);
30 
32  virtual void Verbosity(const int ival) { m_Verbosity = ival; }
33 
35  virtual int Verbosity() const { return m_Verbosity; }
36 
37 private:
39  int m_Verbosity = 0;
40 };
41 
42 #endif // ECCEFastPIDMap_H