Skip to content

Commit 9de3ca1

Browse files
committed
Please consider the following formatting changes
1 parent f1a8798 commit 9de3ca1

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

PWGLF/Tasks/Resonances/higherMassResonances.cxx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
#include "Common/DataModel/Multiplicity.h"
2828
#include "Common/DataModel/PIDResponseTOF.h" //
2929
#include "Common/DataModel/PIDResponseTPC.h" //
30-
#include "Common/DataModel/TrackSelectionTables.h"
3130
#include "Common/DataModel/Qvectors.h"
31+
#include "Common/DataModel/TrackSelectionTables.h"
3232

3333
#include <CommonConstants/MathConstants.h>
3434
#include <CommonConstants/PhysicsConstants.h>
@@ -448,7 +448,7 @@ struct HigherMassResonances {
448448
hglue.add("EpDet", "", {HistType::kTH2F, {axisCentQA, axisEvtPlQA}});
449449
hglue.add("EpRefA", "", {HistType::kTH2F, {axisCentQA, axisEvtPlQA}});
450450
hglue.add("EpRefB", "", {HistType::kTH2F, {axisCentQA, axisEvtPlQA}});
451-
451+
452452
hglue.add("EpResDetRefA", "", {HistType::kTH2F, {axisCentQA, axisEvtResPlQA}});
453453
hglue.add("EpResDetRefB", "", {HistType::kTH2F, {axisCentQA, axisEvtResPlQA}});
454454
hglue.add("EpResRefARefB", "", {HistType::kTH2F, {axisCentQA, axisEvtResPlQA}});
@@ -1307,44 +1307,44 @@ struct HigherMassResonances {
13071307

13081308
double deltaRDaugherPos = std::sqrt(TVector2::Phi_mpi_pi(postrack1.phi() - negtrack1.phi()) * TVector2::Phi_mpi_pi(postrack1.phi() - negtrack1.phi()) + (postrack1.eta() - negtrack1.eta()) * (postrack1.eta() - negtrack1.eta()));
13091309
double deltaRDaugherNeg = std::sqrt(TVector2::Phi_mpi_pi(postrack2.phi() - negtrack2.phi()) * TVector2::Phi_mpi_pi(postrack2.phi() - negtrack2.phi()) + (postrack2.eta() - negtrack2.eta()) * (postrack2.eta() - negtrack2.eta()));
1310-
1310+
13111311
if (config.qAv0) {
13121312
rKzeroShort.fill(HIST("hDauDeltaR"), deltaRDaugherPos, deltaRDaugherNeg);
13131313
}
1314-
1314+
13151315
if (deltaRDaugherPos < config.deltaRDaugherCut || deltaRDaugherNeg < config.deltaRDaugherCut) {
13161316
continue;
13171317
}
1318-
1318+
13191319
if (config.isApplyEtaCutK0s && (v1.eta() < config.confDaughEta || v2.eta() < config.confDaughEta)) {
13201320
continue;
13211321
}
1322-
1322+
13231323
allConditionsMet = 1;
13241324
daughter1 = ROOT::Math::PxPyPzMVector(v1.px(), v1.py(), v1.pz(), o2::constants::physics::MassK0Short); // Kshort
13251325
daughter2 = ROOT::Math::PxPyPzMVector(v2.px(), v2.py(), v2.pz(), o2::constants::physics::MassK0Short); // Kshort
13261326

13271327
mother = daughter1 + daughter2; // invariant mass of Kshort pair
13281328
isMix = false;
1329-
1329+
13301330
const double deltaMass = deltaM(v1.mK0Short(), v2.mK0Short());
13311331
if (config.qAv0) {
13321332
rKzeroShort.fill(HIST("hK0ShortMassCorr"), v1.mK0Short(), v2.mK0Short(), deltaMass);
13331333
}
1334-
1334+
13351335
if (!config.qAOptimisation) {
13361336
if (deltaMass > config.cMaxDeltaM) {
13371337
continue;
13381338
}
13391339
}
1340-
1340+
13411341
const double ptCorr = (mother.Pt() - daughter1.Pt() != 0.) ? daughter1.Pt() / (mother.Pt() - daughter1.Pt()) : 0.;
13421342
if (config.qAv0) {
13431343
rKzeroShort.fill(HIST("hK0sPtCorrelation"), ptCorr);
13441344
}
1345-
1345+
13461346
double deltaRvalue = std::sqrt(TVector2::Phi_mpi_pi(v1.phi() - v2.phi()) * TVector2::Phi_mpi_pi(v1.phi() - v2.phi()) + (v1.eta() - v2.eta()) * (v1.eta() - v2.eta()));
1347-
1347+
13481348
if (!config.qAOptimisation) {
13491349
if (deltaRvalue < config.deltaRK0sCut) {
13501350
continue;

0 commit comments

Comments
 (0)