|
15 | 15 | /// \brief task to evaluate flow and neutron skin with information from ZDC |
16 | 16 |
|
17 | 17 | #include "Common/CCDB/EventSelectionParams.h" |
18 | | -#include "CommonConstants/MathConstants.h" |
19 | 18 | #include "Common/CCDB/TriggerAliases.h" |
20 | 19 | #include "Common/DataModel/Centrality.h" |
21 | 20 | #include "Common/DataModel/EventSelection.h" |
22 | 21 | #include "Common/DataModel/Multiplicity.h" |
23 | 22 | #include "Common/DataModel/PIDResponse.h" |
24 | 23 | #include "Common/DataModel/TrackSelectionTables.h" |
25 | 24 |
|
| 25 | +#include "CommonConstants/MathConstants.h" |
26 | 26 | #include "Framework/ASoAHelpers.h" |
27 | 27 | #include "Framework/AnalysisTask.h" |
28 | 28 | #include "Framework/HistogramRegistry.h" |
@@ -215,7 +215,7 @@ struct FlowZdcTask { |
215 | 215 | histos.add("EtaVsPhi", ";#eta;#varphi", kTH2F, {{{axisEta}, {100, -0.1 * PI, +2.1 * PI}}}); |
216 | 216 | histos.add("ZposVsEta", "", kTProfile, {axisZpos}); |
217 | 217 | 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}}}); |
219 | 219 |
|
220 | 220 | // event selection steps |
221 | 221 | histos.add("eventSelectionSteps", "eventSelectionSteps", kTH1D, {axisEvent}); |
@@ -596,11 +596,11 @@ struct FlowZdcTask { |
596 | 596 | { |
597 | 597 | if (!isEventSelected(collision)) { |
598 | 598 | return; |
599 | | - } |
| 599 | + } |
600 | 600 | const auto& foundBC = collision.foundBC_as<BCsRun3>(); |
601 | 601 | if (!foundBC.has_zdc()) { |
602 | 602 | return; |
603 | | - } |
| 603 | + } |
604 | 604 | int nTot = tracks.size(); |
605 | 605 | double ft0aAmp = 0; |
606 | 606 | double ft0cAmp = 0; |
@@ -710,7 +710,7 @@ struct FlowZdcTask { |
710 | 710 | } |
711 | 711 | std::vector<float> pTs; |
712 | 712 | std::vector<float> vecFD; |
713 | | - std::vector<float> vecOneOverEff; |
| 713 | + std::vector<float> vecOneOverEff; |
714 | 714 | auto efficiency = ccdb->getForTimeStamp<TH1F>(paTHEff.value, foundBC.timestamp()); |
715 | 715 | if (!efficiency) { |
716 | 716 | return; |
@@ -769,7 +769,7 @@ struct FlowZdcTask { |
769 | 769 | histos.fill(HIST("NITSTacksVsZP"), itsTracks, sumZPs); |
770 | 770 | histos.fill(HIST("T0MVsZN"), normT0M, sumZNs); |
771 | 771 | histos.fill(HIST("T0MVsZP"), normT0M, sumZPs); |
772 | | - histos.fill(HIST("NchUncorrected"), glbTracks); |
| 772 | + histos.fill(HIST("NchUncorrected"), glbTracks); |
773 | 773 |
|
774 | 774 | float ratioZN = sumZNC / sumZNA; |
775 | 775 | float ratioZP = sumZPC / sumZPA; |
|
0 commit comments