Skip to content

Commit b561d9d

Browse files
committed
Please consider the following formatting changes
1 parent 3dd47a5 commit b561d9d

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

PWGCF/Flow/Tasks/flowZdcTask.cxx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
/// \brief task to evaluate flow and neutron skin with information from ZDC
1616

1717
#include "Common/CCDB/EventSelectionParams.h"
18-
#include "CommonConstants/MathConstants.h"
1918
#include "Common/CCDB/TriggerAliases.h"
2019
#include "Common/DataModel/Centrality.h"
2120
#include "Common/DataModel/EventSelection.h"
2221
#include "Common/DataModel/Multiplicity.h"
2322
#include "Common/DataModel/PIDResponse.h"
2423
#include "Common/DataModel/TrackSelectionTables.h"
2524

25+
#include "CommonConstants/MathConstants.h"
2626
#include "Framework/ASoAHelpers.h"
2727
#include "Framework/AnalysisTask.h"
2828
#include "Framework/HistogramRegistry.h"
@@ -215,7 +215,7 @@ struct FlowZdcTask {
215215
histos.add("EtaVsPhi", ";#eta;#varphi", kTH2F, {{{axisEta}, {100, -0.1 * PI, +2.1 * PI}}});
216216
histos.add("ZposVsEta", "", kTProfile, {axisZpos});
217217
histos.add("sigma1Pt", ";;#sigma(p_{T})/p_{T};", kTProfile, {axisPt});
218-
histos.add("dcaXYvspT", ";DCA_{xy} (cm);;", kTH2F, {{{50, -1., 1.}, {axisPt}}});
218+
histos.add("dcaXYvspT", ";DCA_{xy} (cm);;", kTH2F, {{{50, -1., 1.}, {axisPt}}});
219219

220220
// event selection steps
221221
histos.add("eventSelectionSteps", "eventSelectionSteps", kTH1D, {axisEvent});
@@ -596,11 +596,11 @@ struct FlowZdcTask {
596596
{
597597
if (!isEventSelected(collision)) {
598598
return;
599-
}
599+
}
600600
const auto& foundBC = collision.foundBC_as<BCsRun3>();
601601
if (!foundBC.has_zdc()) {
602602
return;
603-
}
603+
}
604604
int nTot = tracks.size();
605605
double ft0aAmp = 0;
606606
double ft0cAmp = 0;
@@ -710,7 +710,7 @@ struct FlowZdcTask {
710710
}
711711
std::vector<float> pTs;
712712
std::vector<float> vecFD;
713-
std::vector<float> vecOneOverEff;
713+
std::vector<float> vecOneOverEff;
714714
auto efficiency = ccdb->getForTimeStamp<TH1F>(paTHEff.value, foundBC.timestamp());
715715
if (!efficiency) {
716716
return;
@@ -769,7 +769,7 @@ struct FlowZdcTask {
769769
histos.fill(HIST("NITSTacksVsZP"), itsTracks, sumZPs);
770770
histos.fill(HIST("T0MVsZN"), normT0M, sumZNs);
771771
histos.fill(HIST("T0MVsZP"), normT0M, sumZPs);
772-
histos.fill(HIST("NchUncorrected"), glbTracks);
772+
histos.fill(HIST("NchUncorrected"), glbTracks);
773773

774774
float ratioZN = sumZNC / sumZNA;
775775
float ratioZP = sumZPC / sumZPA;

0 commit comments

Comments
 (0)