Skip to content

Commit 32cba40

Browse files
author
nkaratze
committed
Changed configurable names
1 parent f7de218 commit 32cba40

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

PWGLF/Tasks/Strangeness/v0topologicalcuts.cxx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ struct v0topologicalcuts {
105105
Configurable<int> nBins{"nBins", 100, "N bins in all histos"};
106106

107107
// Configurables for Cuts
108-
Configurable<float> cutzvertex{"cutzvertex", 10.0f, "Accepted z-vertex range (cm)"};
109-
Configurable<float> NSigmaTPCPion{"snigmatpcpion", 4, "NSigmaTPCPion"};
110-
Configurable<float> NSigmaTPCProton{"nsigmatpcproton", 4, "NSigmaTPCProton"};
111-
Configurable<float> compv0masscut{"competitivev0masscut", 0.01, "CompetitiveV0masscut (GeV)"};
108+
Configurable<float> cutZVertex{"cutZVertex", 10.0f, "Accepted z-vertex range (cm)"};
109+
Configurable<float> nSigmaTPCPion{"nSigmaTPCPion", 4, "nSigmaTPCPion"};
110+
Configurable<float> nSigmaTPCProton{"nSigmaTOCProton", 4, "nSigmaTPCProton"};
111+
Configurable<float> compv0masscut{"compv0masscut", 0.01, "CompetitiveV0masscut (GeV)"};
112112
Configurable<float> etadau{"etadau", 0.8, "Eta Daughters"};
113113

114114
// Configurable strings for Kzero cuts
@@ -490,7 +490,7 @@ struct v0topologicalcuts {
490490
rV0Parameters_Data.fill(HIST("hVertexZRec"), collision.posZ());
491491

492492
if (std::abs(v0.posTrack_as<DaughterTracks>().eta()) < etadau && std::abs(v0.negTrack_as<DaughterTracks>().eta()) < etadau) { // daughters pseudorapidity cut
493-
if (std::abs(posDaughterTrack.tpcNSigmaPi()) < NSigmaTPCPion && std::abs(negDaughterTrack.tpcNSigmaPi()) < NSigmaTPCPion) { // TPC PID on daughter pions
493+
if (std::abs(posDaughterTrack.tpcNSigmaPi()) < nSigmaTPCPion && std::abs(negDaughterTrack.tpcNSigmaPi()) < nSigmaTPCPion) { // TPC PID on daughter pions
494494
rV0Parameters_Data.fill(HIST("hMassK0ShortAllAfterCutsandTPCPID"), v0.mK0Short());
495495
if (std::abs(v0.mLambda() - mLambdaPDG) > compv0masscut && std::abs(v0.mAntiLambda() - mLambdaPDG) > compv0masscut) { // antilambda competitive v0 mass cut (cut out Lambdas and Anti-Lambdas)
496496
rV0Parameters_Data.fill(HIST("hMassK0ShortAllAfterCutTPCPIDCompV0MassCut"), v0.mK0Short());
@@ -542,7 +542,7 @@ struct v0topologicalcuts {
542542
}
543543
}
544544
}
545-
if (std::abs(posDaughterTrack.tpcNSigmaPr()) < NSigmaTPCProton && std::abs(negDaughterTrack.tpcNSigmaPi()) < NSigmaTPCPion) { // TPC PID on daughter pion and proton
545+
if (std::abs(posDaughterTrack.tpcNSigmaPr()) < nSigmaTPCProton && std::abs(negDaughterTrack.tpcNSigmaPi()) < nSigmaTPCPion) { // TPC PID on daughter pion and proton
546546
rV0Parameters_Data.fill(HIST("hMassLambdaAllAfterCutsandTPCPID"), v0.mLambda());
547547
if (std::abs(v0.mK0Short() - mK0shPDG) > compv0masscut) { // lambda competitive v0 mass cut (cut out Kaons)
548548
// Filling the five Lambda invariant mass plots for different cuts (which are taken from namespace), same as with Kzeros above,for full explanation see the first kzero cut filling in the MC process
@@ -593,7 +593,7 @@ struct v0topologicalcuts {
593593
}
594594
}
595595
}
596-
if (std::abs(posDaughterTrack.tpcNSigmaPr()) < NSigmaTPCProton && std::abs(negDaughterTrack.tpcNSigmaPi()) < NSigmaTPCPion) { // TPC PID on daughter pion abd proton
596+
if (std::abs(posDaughterTrack.tpcNSigmaPr()) < nSigmaTPCProton && std::abs(negDaughterTrack.tpcNSigmaPi()) < nSigmaTPCPion) { // TPC PID on daughter pion abd proton
597597
rV0Parameters_Data.fill(HIST("hMassAntilambdaAllAfterCutsandTPCPID"), v0.mAntiLambda());
598598
if (std::abs(v0.mK0Short() - mK0shPDG) > compv0masscut) { // antilambda competitive v0 mass cut (cut out Kaons)
599599
// Filling the five Anti-Lambda invariant mass plots for different cuts (which are taken from namespace), same as with Kzeros and Lambdas above,for full explanation see the first kzero cut filling in the MC process

0 commit comments

Comments
 (0)