Skip to content

Commit ee676fd

Browse files
committed
Please consider the following formatting changes
1 parent 5db580a commit ee676fd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

PWGCF/GenericFramework/Tasks/flowGFWLightIons.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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)