Skip to content

Commit 518065c

Browse files
authored
Please consider the following formatting changes (#409)
1 parent 6ce0035 commit 518065c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

PWGLF/TableProducer/Strangeness/strangenessbuilder.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ struct StrangenessBuilder {
784784
float bestPointingAngle = 10; // a nonsense angle, anything's better
785785
size_t bestPointingAngleIndex = -1;
786786

787-
float bestDCADaughters = 1e+3; // an excessively large DCA
787+
float bestDCADaughters = 1e+3; // an excessively large DCA
788788
size_t bestDCADaughtersIndex = -1;
789789

790790
for (size_t ic = 0; ic < v0tableGrouped[iV0].collisionIds.size(); ic++) {
@@ -833,13 +833,13 @@ struct StrangenessBuilder {
833833
for (size_t ic = 0; ic < v0tableGrouped[iV0].collisionIds.size(); ic++) {
834834
ao2dV0toV0List[v0tableGrouped[iV0].V0Ids[ic]] = -2;
835835
// algorithm 1: best pointing angle
836-
if (bestPointingAngleIndex == ic && deduplicationAlgorithm.value==1) {
836+
if (bestPointingAngleIndex == ic && deduplicationAlgorithm.value == 1) {
837837
ao2dV0toV0List[v0tableGrouped[iV0].V0Ids[ic]] = -1; // keep best only
838838
}
839-
if (bestDCADaughtersIndex == ic && deduplicationAlgorithm.value==2) {
839+
if (bestDCADaughtersIndex == ic && deduplicationAlgorithm.value == 2) {
840840
ao2dV0toV0List[v0tableGrouped[iV0].V0Ids[ic]] = -1; // keep best only
841841
}
842-
if (bestDCADaughtersIndex == ic && bestPointingAngleIndex == ic && deduplicationAlgorithm.value==3) {
842+
if (bestDCADaughtersIndex == ic && bestPointingAngleIndex == ic && deduplicationAlgorithm.value == 3) {
843843
ao2dV0toV0List[v0tableGrouped[iV0].V0Ids[ic]] = -1; // keep best only
844844
}
845845
}

0 commit comments

Comments
 (0)