simple-tof-analysis
 All Classes Namespaces Functions Variables Groups Pages
TSBetheBlochMgr.h
1 /*
2  * TSBetheBlochMgr.h
3  *
4  * Created on: Jul 14, 2014
5  * Author: Silvestro di Luise
6  * Silvestro.Di.Luise@cern.ch
7  *
8  *
9  *
10  */
11 
12 #ifndef TSBETHEBLOCHMGR_H_
13 #define TSBETHEBLOCHMGR_H_
14 
15 #include <map>
16 
17 #include "TSBetheBlochFunc.h"
18 
19 #include "TSPhaseSpaceMap.h"
20 
21 
23 
24 
25 
26 public:
27 
28  TSBetheBlochMgr(TString name, TString title, double (*fcn)(double*, double*), double xmin, double xmax, int npar);
29  TSBetheBlochMgr(TString name, TString title, TString table_file);
30 
31  virtual ~TSBetheBlochMgr();
32 
33  Double_t Eval(Double_t momentum, Double_t mass = 0, Double_t z = 0, Double_t t = 0) const;
34  TSBetheBlochFunc* GetVolumeBetheBlochFunc(int) const;
35  bool HasPhaseSpaceMap() const {return fHasPSMap;}
36 
37  void Init();
38 
39  void SetPhaseSpaceMap(const TSPhaseSpaceMap &);
40 
41  void SetFunctionToSelection(TSBetheBlochFunc &);
42 
43  void UseDefaultBetheBloch(bool b) {fUseDefaultBB = b;}
44 
45 
46 private:
47 
48  bool fHasPSMap;
49  bool fUseDefaultBB;
50 
51  int fGetVolumeBBId(int) const;
52 
53 
54  TSPhaseSpaceMap *fPSMap;
55  std::map<int,int> fBBMap;
56  std::map<int,TSBetheBlochFunc*> fBBList;
57 
58 };
59 
60 #endif /* TSBETHEBLOCHMGR_H_ */
Definition: TSPhaseSpaceMap.h:35
Definition: TSBetheBlochFunc.h:30
Definition: TSBetheBlochMgr.h:22