Skip to content

Commit faa6feb

Browse files
authored
Please consider the following formatting changes (#503)
1 parent 9af0350 commit faa6feb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Common/Tools/Multiplicity/multGlauberNBDFitter.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ Double_t multGlauberNBDFitter::ContinuousNBD(Double_t n, Double_t mu, Double_t k
384384
return F;
385385
}
386386

387-
void multGlauberNBDFitter::CalculateAvNpNc(TProfile* lNPartProf, TProfile* lNCollProf, TH2F* lNPart2DPlot, TH2F* lNColl2DPlot, TH1F* hPercentileMap, Double_t lLoRange, Double_t lHiRange, TH3D* lNpNcEcc, TH2F* lEcc2DPlot, TH3D* lNpNcB, TH2F* lB2DPlot, TH2F *lNancestor2DPlot, Double_t fProbabilityCutoff)
387+
void multGlauberNBDFitter::CalculateAvNpNc(TProfile* lNPartProf, TProfile* lNCollProf, TH2F* lNPart2DPlot, TH2F* lNColl2DPlot, TH1F* hPercentileMap, Double_t lLoRange, Double_t lHiRange, TH3D* lNpNcEcc, TH2F* lEcc2DPlot, TH3D* lNpNcB, TH2F* lB2DPlot, TH2F* lNancestor2DPlot, Double_t fProbabilityCutoff)
388388
{
389389
cout << "Calculating <Npart>, <Ncoll> in centrality bins..." << endl;
390390
cout << "Range to calculate: " << lLoRange << " to " << lHiRange << endl;
@@ -460,7 +460,7 @@ void multGlauberNBDFitter::CalculateAvNpNc(TProfile* lNPartProf, TProfile* lNCol
460460
lMult = fAncestorMode != 2 ? fNBD->Eval(lMultValue) : ContinuousNBD(lMultValue, lThisMu, lThisk);
461461
Double_t lProbability = lNancestorCount * lMult;
462462

463-
if(lProbability < fProbabilityCutoff){
463+
if (lProbability < fProbabilityCutoff) {
464464
continue; // skip if probability of contributing too small
465465
}
466466

Common/Tools/Multiplicity/multGlauberNBDFitter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class multGlauberNBDFitter : public TNamed
7979

8080
// For estimating Npart, Ncoll in multiplicity bins
8181
// also viable: eccentricity, impact parameter, ancestor cross-check plot
82-
void CalculateAvNpNc(TProfile* lNPartProf, TProfile* lNCollProf, TH2F* lNPart2DPlot, TH2F* lNColl2DPlot, TH1F* hPercentileMap, Double_t lLoRange = -1, Double_t lHiRange = -1, TH3D* lNpNcEcc = 0x0, TH2F* lEcc2DPlot = 0x0, TH3D* lNpNcB = 0x0, TH2F* lB2DPlot = 0x0, TH2F *lNancestor2DPlot = 0x0, Double_t fProbabilityCutoff = -1);
82+
void CalculateAvNpNc(TProfile* lNPartProf, TProfile* lNCollProf, TH2F* lNPart2DPlot, TH2F* lNColl2DPlot, TH1F* hPercentileMap, Double_t lLoRange = -1, Double_t lHiRange = -1, TH3D* lNpNcEcc = 0x0, TH2F* lEcc2DPlot = 0x0, TH3D* lNpNcB = 0x0, TH2F* lB2DPlot = 0x0, TH2F* lNancestor2DPlot = 0x0, Double_t fProbabilityCutoff = -1);
8383

8484
// void Print(Option_t *option="") const;
8585

0 commit comments

Comments
 (0)