KaliVeda
Toolkit for HIC analysis
impact_parameter_distribution.h
1 
4 #ifndef __KVSMOOTHIPDIST_H
5 #define __KVSMOOTHIPDIST_H
6 
7 #include "KVBase.h"
8 #include "TF1.h"
9 #include "TH1.h"
10 
11 namespace KVImpactParameters {
45 
46  private:
47  TH1* fHisto;
48  TF1 fIPdist;
49  TF1 fSigmaR;
51 
52  public:
56 
57  void FitIPDist(TH1*);
58 
59  Double_t GetCrossSection() const;
60  Double_t GetB0() const
61  {
63  return fIPdist.GetParameter(1);
64  }
65  Double_t GetDeltaB() const
66  {
68  return fIPdist.GetParameter(2);
69  }
70  Double_t GetCrossSectionPerEvent() const;
71  void SetB0(Double_t x)
72  {
74  fIPdist.SetParameter(1, x);
75  fCentrality.SetParameter(0, x);
76  }
77  void SetDeltaB(Double_t x)
78  {
80  fIPdist.SetParameter(2, x);
81  fSigmaR.SetParameter(0, x);
82  fCentrality.SetParameter(1, x);
83  }
84  void SetDeltaB_WithConstantCrossSection(Double_t deltab, Double_t sigmaR = 0);
85  TF1& GetIPDist()
86  {
93  return fIPdist;
94  }
95  void Draw(Option_t* opt = "")
96  {
99  fIPdist.Draw(opt);
100  }
101  const TF1& GetSigmaR()
102  {
105  return fSigmaR;
106  }
107  const TF1& GetCentrality()
108  {
111  return fCentrality;
112  }
113  Double_t Calculate_b(Double_t centrality) const;
114 
116  {
118 
119  fIPdist.SetParameter(0, 10.*TMath::TwoPi() / GetCrossSection());
120  }
121 
122  Double_t GetRelativeCrossSection(double b) const
123  {
125  if (b > 0) return fIPdist.Eval(b) / (b * fIPdist.GetParameter(0));
126  return 0;
127  }
128 
129  Double_t GetDifferentialCrossSection(double b) const
130  {
132 
133  if (b > 0) {
134  return fIPdist.Eval(b) / fIPdist.GetParameter(0) * 10 * TMath::TwoPi();
135  }
136  return 0;
137  }
139  {
146  fIPdist.SetParameter(0, 10 * TMath::TwoPi());
147  }
148 
149  TH1* GetCentralityFromHisto();
150 
153 
154  if(bb > 0 && fHisto && fHisto->Integral()>0){
155  if(bb < fHisto->GetXaxis()->GetBinUpEdge(fHisto->GetNbinsX())) return fHisto->GetBinContent(fHisto->FindBin(bb));
156  }
157 
158  return 0;
159  }
160 
161  ClassDef(impact_parameter_distribution, 1) //Realistic impact parameter distribution with smooth fall-off at large b
162  };
163 }
164 #endif
Base class for KaliVeda framework.
Definition: KVBase.h:142
Class implementing parametrizable impact parameter distributions.
TF1 fCentrality
centrality as function of impact parameter
void SetDeltaB_WithConstantCrossSection(Double_t deltab, Double_t sigmaR=0)