KaliVeda
Toolkit for HIC analysis
cavata_prescription.h
1 
4 #ifndef __KVIMPACTPARAMETER_H
5 #define __KVIMPACTPARAMETER_H
6 #include "KVBase.h"
7 #include "TH1.h"
8 #include "TString.h"
9 #include "TGraph.h"
10 #include "TF1.h"
11 #include "KVHistoManipulator.h"
12 #include <vector>
13 
14 namespace KVImpactParameters {
46  class cavata_prescription : public KVBase {
47  TH1* fData;
48  TString fEvol;
49  TGraph* fIPScale;
50  TGraph* fXSecScale;
54  Double_t Bmax;
55  Double_t Smax;
56 
57  void make_scale(Int_t npoints);
58 #ifndef WITH_CPP11
59  KVImpactParameter(const KVImpactParameter&) : KVBase() {}; // copying is not possible
60 #endif
61  public:
62 #ifdef WITH_CPP11
63  cavata_prescription(const cavata_prescription&) = delete; // copying is not possible
64 #endif
66  {
67  fData = nullptr;
68  fIPScale = nullptr;
69  fXSecScale = nullptr;
70  fObsTransform = nullptr;
71  fObsTransformXSec = nullptr;
72  Bmax = 1.0;
73  }
79  cavata_prescription(TH1* h, Option_t* evol = "D");
80  virtual ~cavata_prescription();
81 
82  void MakeScale(Int_t npoints = 100, Double_t bmax = 1.0);
83  void MakeAbsoluteScale(Int_t npoints = 100, Double_t bmax = 1.0);
84  TGraph* GetScale() const
85  {
89  return fIPScale;
90  }
91  TGraph* GetXSecScale() const
92  {
96  return fXSecScale;
97  }
98  Double_t BTransform(Double_t*, Double_t*);
99  Double_t XTransform(Double_t*, Double_t*);
100  TF1* GetTransFunc() const
101  {
103  return fObsTransform;
104  }
105  TF1* GetXSecTransFunc() const
106  {
108  return fObsTransformXSec;
109  }
110  Double_t GetImpactParameter(Double_t obs)
111  {
114  return fObsTransform->Eval(obs);
115  }
116  Double_t GetCrossSection(Double_t obs)
117  {
120  return fObsTransformXSec->Eval(obs);
121  }
122  Double_t GetObservable(Double_t b)
123  {
126  return fObsTransform->GetX(b);
127  }
128  Double_t GetObservableXSec(Double_t sigma)
129  {
132  return fObsTransformXSec->GetX(sigma);
133  }
134  TH1* GetIPDistribution(TH1* obs, Int_t nbinx = 100, Option_t* norm = "");
135  TGraph* GetIPEvolution(TH2* obscor, TString moment, TString axis = "Y");
136  TH1* GetXSecDistribution(TH1* obs, Int_t nbinx = 100, Option_t* norm = "");
137  TGraph* GetXSecEvolution(TH2* obscor, TString moment, TString axis = "Y");
138 
139  static Double_t GetXSecFromIP(Double_t bmax)
140  {
144  return 10.*TMath::Pi() * pow(bmax, 2);
145  }
146  static Double_t GetIPFromXSec(Double_t xsec)
147  {
151  return pow(xsec / 10. / TMath::Pi(), 0.5);
152  }
153  std::vector<Double_t> SliceXSec(Int_t nslices, Double_t totXsec);
154  double GetMeanBForSCA(double bmin, double bmax) const;
155  double GetSigmaBForSCA(double bmin, double bmax) const;
156 
157  ClassDef(cavata_prescription, 2) //Impact parameter analysis tools
158  };
159 }
160 #endif
Base class for KaliVeda framework.
Definition: KVBase.h:142
Toolkit for various operations on histograms & graphs not provided by ROOT.
Impact parameter estimation neglecting using sharp cut-off approximation.
Double_t BTransform(Double_t *, Double_t *)
double GetMeanBForSCA(double bmin, double bmax) const
static Double_t GetIPFromXSec(Double_t xsec)
TGraph * fXSecScale
derived relation between observable and cross-section
TGraph * GetIPEvolution(TH2 *obscor, TString moment, TString axis="Y")
TGraph * fIPScale
derived relation between observable and impact-parameter
std::vector< Double_t > SliceXSec(Int_t nslices, Double_t totXsec)
cavata_prescription(const cavata_prescription &)=delete
TF1 * fObsTransform
function for transforming observable into impact parameter
TGraph * GetXSecEvolution(TH2 *obscor, TString moment, TString axis="Y")
TF1 * fObsTransformXSec
function for transforming observable into cross-section
Double_t XTransform(Double_t *, Double_t *)
KVHistoManipulator HM
for scaling transormations of histograms, graphs, etc.
void MakeScale(Int_t npoints=100, Double_t bmax=1.0)
TH1 * fData
histogram containing distribution of ip-related observable
static Double_t GetXSecFromIP(Double_t bmax)
TString fEvol
how the observable evolves with b
Double_t Smax
maximum of cross-section scale
double GetSigmaBForSCA(double bmin, double bmax) const
TH1 * GetIPDistribution(TH1 *obs, Int_t nbinx=100, Option_t *norm="")
void MakeAbsoluteScale(Int_t npoints=100, Double_t bmax=1.0)
TH1 * GetXSecDistribution(TH1 *obs, Int_t nbinx=100, Option_t *norm="")