Skip to content

Commit 8d07568

Browse files
committed
Please consider the following formatting changes
1 parent 54ea4ad commit 8d07568

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

PWGCF/Flow/Tasks/flowZdcTask.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ struct FlowZdcTask {
118118
ConfigurableAxis multHistBin{"multHistBin", {501, -0.5, 500.5}, ""};
119119
ConfigurableAxis axisCent{"axisCent", {10, 0, 100}, "axisCent"};
120120

121-
122121
Filter collisionFilter = nabs(aod::collision::posZ) < cfgCutVertex;
123122
Filter trackFilter = (nabs(aod::track::eta) < cfgCutEta) && (aod::track::pt > cfgCutPtMin) && (aod::track::pt < cfgCutPtMax) && ((requireGlobalTrackInFilter()) || (aod::track::isGlobalTrackSDD == (uint8_t) true)) && (aod::track::tpcChi2NCl < cfgCutChi2prTPCcls) && (nabs(aod::track::dcaZ) < cfgCutDCAz) && (nabs(aod::track::dcaXY) < cfgCutDCAxy);
124123
using ColEvSels = soa::Join<aod::Collisions, aod::EvSels>;
@@ -338,7 +337,7 @@ struct FlowZdcTask {
338337
const auto cent = collision.centFT0C();
339338
int globalTracks = tracks.size();
340339
if (globalTracks < 1)
341-
return;
340+
return;
342341
// this is the q vector for the TPC data. it is a complex function
343342
double qTpcReal = 0.0; // Initialize qTPC_real
344343
double qTpcIm = 0.0; // init qTPC_imaginary
@@ -513,7 +512,7 @@ struct FlowZdcTask {
513512
}
514513

515514
void processCorrelation(CollisionDataTable::iterator const& collision, FilTrackDataTable const& tracks)
516-
{
515+
{
517516
if (!isEventSelected(collision)) {
518517
return;
519518
}
@@ -541,4 +540,5 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
541540
{
542541
return WorkflowSpec{
543542
adaptAnalysisTask<FlowZdcTask>(cfgc)};
544-
}
543+
}
544+

0 commit comments

Comments
 (0)