4 #include "impact_parameter_distribution.h"
25 if (par[0] == 0)
return 0;
29 if (x[0] <= par[1])
return par[0] * x[0];
33 return par[0] * x[0] / (1. + TMath::Exp((x[0] - par[1]) / par[2]));
49 return TMath::Pi() * TMath::Power(x[0], 2) * 10.;
51 return -10 * TMath::TwoPi() * TMath::Power(p[0], 2) *
52 TMath::DiLog(-TMath::Exp(x[0] / p[0]));
70 if (b0 <= 0)
return 0;
75 return TMath::Power(b / b0, 2);
77 const double pi_sqr_over_6 = TMath::Power(TMath::Pi(), 2) / 6.;
78 double exp_b_minus_b0_over_db = TMath::Exp((b - b0) / db);
79 double db_sqr = db * db;
81 double cb = -TMath::DiLog(-TMath::Exp(b0 / db)) - pi_sqr_over_6
82 + (b * b - b0 * b0) / 2. / db_sqr
83 - (b / db) * TMath::Log(1 + exp_b_minus_b0_over_db)
84 - TMath::DiLog(-exp_b_minus_b0_over_db);
85 cb *= TMath::TwoPi() * db_sqr / sigma;
97 fIPdist(
"smooth_pb",
smooth_pb, 0., 20., 3),
103 fIPdist.SetParNames(
"Norm",
"b_{0}",
"#Delta b");
104 fSigmaR.SetParName(0,
"#Delta b");
106 fIPdist.SetParameter(0, TMath::TwoPi() * 10.);
120 fIPdist(Form(
"%s_smooth_pb", h->GetName()),
smooth_pb, 0., 50., 3),
121 fSigmaR(Form(
"%s_sigmaR", h->GetName()),
sigma_inel, 0., 50., 1),
122 fCentrality(Form(
"%s_centrality", h->GetName()),
ana_centrality, 0., 20., 2)
127 fIPdist.SetParNames(
"Norm",
"b_{0}",
"#Delta b");
128 fSigmaR.SetParName(0,
"#Delta b");
145 Double_t minb = h->GetXaxis()->GetBinLowEdge(1);
146 Double_t maxb = h->GetXaxis()->GetBinUpEdge(h->GetXaxis()->GetNbins());
147 Double_t maxy = h->GetMaximum();
148 Double_t bmax = h->GetBinCenter(h->GetMaximumBin());
149 fIPdist.SetParLimits(0, 1., maxy);
150 fIPdist.SetParLimits(1, minb, maxb);
151 fIPdist.SetParLimits(2, 1.e-6, maxb - minb);
152 fIPdist.SetParameters(maxy / 10., bmax, 0.4);
204 Double_t b0 =
fSigmaR.GetX(sigma);
233 TH1 *centb_histo =
nullptr;
236 TH1 *histo_clone = (TH1*)
fHisto->Clone();
237 histo_clone->Scale(1./histo_clone->Integral());
238 centb_histo = histo_clone->GetCumulative(kTRUE);
240 else Warning(
"GetCentralityFromHisto",
"histogram containing impact parameter distribution is EMPTY");
Class implementing parametrizable impact parameter distributions.
TF1 fIPdist
impact parameter distribution
TH1 * fHisto
! last fitted histogram
Double_t GetDeltaB() const
void SetDeltaB(Double_t x)
TF1 fSigmaR
total reaction cross section
Double_t Calculate_b(Double_t centrality) const
TF1 fCentrality
centrality as function of impact parameter
TH1 * GetCentralityFromHisto()
Double_t GetCrossSectionPerEvent() const
Double_t GetCrossSection() const
impact_parameter_distribution()
void SetDeltaB_WithConstantCrossSection(Double_t deltab, Double_t sigmaR=0)
Double_t sigma_inel(Double_t *x, Double_t *p)
double ana_centrality(double *x, double *par)
Double_t smooth_pb(Double_t *x, Double_t *par)