Skip to content

Commit 872c28b

Browse files
authored
Please consider the following formatting changes (#480)
1 parent bc3c5cb commit 872c28b

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ struct strangenesstofpid {
412412
histos.add("h2dDeltaTimePositiveK0ShortPi", "h2dDeltaTimePositiveK0ShortPi", {HistType::kTH3F, {axisP, axisEta, axisDeltaTime}});
413413
histos.add("h2dDeltaTimeNegativeK0ShortPi", "h2dDeltaTimeNegativeK0ShortPi", {HistType::kTH3F, {axisP, axisEta, axisDeltaTime}});
414414

415-
// delta time with respect to primary-like calculation
415+
// delta time with respect to primary-like calculation
416416
histos.add("h2dDiffFromPrimCalcPositiveLambdaPi", "h2dDiffFromPrimCalcPositiveLambdaPi", {HistType::kTH2F, {axisP, axisDeltaTimeVsPrimaryCalculation}});
417417
histos.add("h2dDiffFromPrimCalcNegativeLambdaPi", "h2dDiffFromPrimCalcNegativeLambdaPi", {HistType::kTH2F, {axisP, axisDeltaTimeVsPrimaryCalculation}});
418418
histos.add("h2dDiffFromPrimCalcPositiveLambdaPr", "h2dDiffFromPrimCalcPositiveLambdaPr", {HistType::kTH2F, {axisP, axisDeltaTimeVsPrimaryCalculation}});
@@ -442,7 +442,7 @@ struct strangenesstofpid {
442442
histos.add("h2dnegDeltaTimeAsOmPr", "h2dnegDeltaTimeAsOmPr", {HistType::kTH3F, {axisP, axisEta, axisDeltaTime}});
443443
histos.add("h2dbachDeltaTimeAsOmKa", "h2dbachDeltaTimeAsOmKa", {HistType::kTH3F, {axisP, axisEta, axisDeltaTime}});
444444

445-
// delta time with respect to primary-like calculation
445+
// delta time with respect to primary-like calculation
446446
histos.add("h2dposDiffFromPrimCalcAsXiPi", "h2dposDiffFromPrimCalcAsXiPi", {HistType::kTH2F, {axisP, axisDeltaTimeVsPrimaryCalculation}});
447447
histos.add("h2dposDiffFromPrimCalcAsXiPr", "h2dposDiffFromPrimCalcAsXiPr", {HistType::kTH2F, {axisP, axisDeltaTimeVsPrimaryCalculation}});
448448
histos.add("h2dnegDiffFromPrimCalcAsXiPi", "h2dnegDiffFromPrimCalcAsXiPi", {HistType::kTH2F, {axisP, axisDeltaTimeVsPrimaryCalculation}});
@@ -657,7 +657,7 @@ struct strangenesstofpid {
657657
float nSigmaPositiveK0ShortPi = o2::aod::v0data::kNoTOFValue;
658658
float nSigmaNegativeK0ShortPi = o2::aod::v0data::kNoTOFValue;
659659

660-
// extra auxiliary variables
660+
// extra auxiliary variables
661661
float deltaDecayTimeLambda = o2::aod::v0data::kNoTOFValue;
662662
float deltaDecayTimeAntiLambda = o2::aod::v0data::kNoTOFValue;
663663
float deltaDecayTimeK0Short = o2::aod::v0data::kNoTOFValue;
@@ -845,7 +845,7 @@ struct strangenesstofpid {
845845
v0tof.timeNegativePr = o2::framework::pid::tof::MassToExpTime(nTof.tofExpMom, lengthNegative, o2::constants::physics::MassProton * o2::constants::physics::MassProton);
846846
v0tof.timeNegativePi = o2::framework::pid::tof::MassToExpTime(nTof.tofExpMom, lengthNegative, o2::constants::physics::MassPionCharged * o2::constants::physics::MassPionCharged);
847847

848-
// as primary
848+
// as primary
849849
v0tof.timeAsPrimaryNegativePr = o2::framework::pid::tof::MassToExpTime(nTof.tofExpMom, nTof.length, o2::constants::physics::MassProton * o2::constants::physics::MassProton);
850850
v0tof.timeAsPrimaryNegativePi = o2::framework::pid::tof::MassToExpTime(nTof.tofExpMom, nTof.length, o2::constants::physics::MassPionCharged * o2::constants::physics::MassPionCharged);
851851
}
@@ -1280,18 +1280,18 @@ struct strangenesstofpid {
12801280
v0tof.nSigmaNegativeLambdaPr, v0tof.nSigmaPositiveLambdaPi,
12811281
v0tof.nSigmaPositiveK0ShortPi, v0tof.nSigmaNegativeK0ShortPi);
12821282
}
1283-
if(calculateV0TOFPIDs.value){
1283+
if (calculateV0TOFPIDs.value) {
12841284
v0tofpid(v0tof.deltaTimePositiveLambdaPi, v0tof.deltaTimePositiveLambdaPr,
1285-
v0tof.deltaTimeNegativeLambdaPi, v0tof.deltaTimeNegativeLambdaPr,
1286-
v0tof.deltaTimePositiveK0ShortPi, v0tof.deltaTimeNegativeK0ShortPi,
1287-
v0tof.deltaDecayTimeLambda, v0tof.deltaDecayTimeAntiLambda, v0tof.deltaDecayTimeK0Short);
1285+
v0tof.deltaTimeNegativeLambdaPi, v0tof.deltaTimeNegativeLambdaPr,
1286+
v0tof.deltaTimePositiveK0ShortPi, v0tof.deltaTimeNegativeK0ShortPi,
1287+
v0tof.deltaDecayTimeLambda, v0tof.deltaDecayTimeAntiLambda, v0tof.deltaDecayTimeK0Short);
12881288
}
1289-
if(calculateV0TOFBetas.value){
1289+
if (calculateV0TOFBetas.value) {
12901290
v0tofbeta(v0tof.betaLambda, v0tof.betaAntiLambda, v0tof.betaK0Short);
12911291
}
1292-
if(calculateV0TOFDebugs.value){
1293-
v0tofdebugs(v0tof.timeLambda, v0tof.timeK0Short,
1294-
v0tof.timePositivePr, v0tof.timePositivePi,
1292+
if (calculateV0TOFDebugs.value) {
1293+
v0tofdebugs(v0tof.timeLambda, v0tof.timeK0Short,
1294+
v0tof.timePositivePr, v0tof.timePositivePi,
12951295
v0tof.timeNegativePr, v0tof.timeNegativePi);
12961296
}
12971297
}

0 commit comments

Comments
 (0)