Skip to content

Commit 0fc7473

Browse files
committed
Please consider the following formatting changes
1 parent ea0bcf0 commit 0fc7473

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

PWGLF/TableProducer/Strangeness/cascadeflow.cxx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ struct cascadeFlow {
156156
Configurable<bool> isQVecT0C{"isQVecT0C", 1, ""};
157157
Configurable<bool> isQVecT0M{"isQVecT0M", 0, ""};
158158
Configurable<bool> isQVecV0A{"isQVecV0A", 0, ""};
159-
Configurable<bool> isCollisionCentrality{"isCollisionCentrality", 0, ""}; //0: FT0C, 1: FT0M (implemented only for Lambda analysis in OO)
159+
Configurable<bool> isCollisionCentrality{"isCollisionCentrality", 0, ""}; // 0: FT0C, 1: FT0M (implemented only for Lambda analysis in OO)
160160

161161
// Output filling criteria
162162
struct : ConfigurableGroup {
@@ -431,9 +431,9 @@ struct cascadeFlow {
431431

432432
counter++;
433433

434-
//eta daughters)
435-
// if (abs(posExtra.eta()) > V0Configs.dauTrackV0Eta || abs(negExtra.y()) > V0Configs.dauTrackV0Eta) return false;
436-
434+
// eta daughters)
435+
// if (abs(posExtra.eta()) > V0Configs.dauTrackV0Eta || abs(negExtra.y()) > V0Configs.dauTrackV0Eta) return false;
436+
437437
return true;
438438
}
439439
template <typename TDaughter>
@@ -1668,12 +1668,12 @@ struct cascadeFlow {
16681668
histos.fill(HIST("hEventCentralityBefEvSelT0M"), coll.centFT0M());
16691669

16701670
Float_t collisionCentrality = 0;
1671-
if (isCollisionCentrality ==0) { //T0C
1671+
if (isCollisionCentrality == 0) { // T0C
16721672
collisionCentrality = coll.centFT0C();
1673-
} else if (isCollisionCentrality ==1) { //T0M
1673+
} else if (isCollisionCentrality == 1) { // T0M
16741674
collisionCentrality = coll.centFT0M();
16751675
}
1676-
1676+
16771677
if (!AcceptEvent(coll, 1)) {
16781678
return;
16791679
}

0 commit comments

Comments
 (0)