Skip to content

Commit 021ab6c

Browse files
committed
format
1 parent a07d525 commit 021ab6c

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

PWGCF/GenericFramework/Tasks/flowGFWLightIons.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ std::vector<double> multGlobalCorrCutPars;
7979
std::vector<double> multPVCorrCutPars;
8080
} // namespace o2::analysis::gfw
8181

82-
struct FlowGfwLightIon {
82+
struct FlowGfwLightIons {
8383

8484
O2_DEFINE_CONFIGURABLE(cfgNbootstrap, int, 10, "Number of subsamples")
8585
O2_DEFINE_CONFIGURABLE(cfgMpar, int, 4, "Highest order of pt-pt correlations")
@@ -202,7 +202,7 @@ struct FlowGfwLightIon {
202202
TF1* fMultCutHigh = nullptr;
203203

204204
o2::framework::expressions::Filter collisionFilter = nabs(aod::collision::posZ) < cfgVtxZ;
205-
o2::framework::expressions::Filter trackFilter = nabs(aod::track::eta) < cfgEta && aod::track::pt > cfgPtmin&& aod::track::pt < cfgPtmax && ((requireGlobalTrackInFilter()) || (aod::track::isGlobalTrackSDD == (uint8_t)true)) && (aod::track::itsChi2NCl < cfgChi2PrITSCls) && (aod::track::tpcChi2NCl < cfgChi2PrTPCCls) && nabs(aod::track::dcaZ) < cfgDCAz;
205+
o2::framework::expressions::Filter trackFilter = nabs(aod::track::eta) < cfgEta && aod::track::pt > cfgPtmin&& aod::track::pt < cfgPtmax && ((requireGlobalTrackInFilter()) || (aod::track::isGlobalTrackSDD == (uint8_t) true)) && (aod::track::itsChi2NCl < cfgChi2PrITSCls) && (aod::track::tpcChi2NCl < cfgChi2PrTPCCls) && nabs(aod::track::dcaZ) < cfgDCAz;
206206

207207
Preslice<aod::Tracks> perCollision = aod::track::collisionId;
208208
o2::framework::expressions::Filter mcCollFilter = nabs(aod::mccollision::posZ) < cfgVtxZ;

PWGCF/GenericFramework/Tasks/flowGenericFramework.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,8 @@ struct FlowGenericFramework {
299299
registry.add("MCGen/before/pt_gen", "", {HistType::kTH1D, {ptAxis}});
300300
registry.add("MCGen/before/phi_eta_vtxZ_gen", "", {HistType::kTH3D, {phiAxis, etaAxis, vtxAxis}});
301301
registry.addClone("MCGen/before/", "MCGen/after/");
302-
if (doprocessOnTheFly) registry.add("MCGen/impactParameter", "", {HistType::kTH2D, {{bAxis, nchAxis}}});
302+
if (doprocessOnTheFly)
303+
registry.add("MCGen/impactParameter", "", {HistType::kTH2D, {{bAxis, nchAxis}}});
303304
}
304305
if (doprocessMCReco || doprocessData || doprocessRun2) {
305306
registry.add("trackQA/before/phi_eta_vtxZ", "", {HistType::kTH3D, {phiAxis, etaAxis, vtxAxis}});

0 commit comments

Comments
 (0)