Skip to content

Commit bf0a17b

Browse files
committed
Limit kaon source classification to Omega
1 parent 519e2e7 commit bf0a17b

11 files changed

Lines changed: 19 additions & 357 deletions

PWGCF/DataModel/FemtoDerived.h

Lines changed: 1 addition & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -674,16 +674,11 @@ enum ParticleOriginMCTruth {
674674
kSecondaryDaughterLambda, //! Daughter from a Lambda decay
675675
kSecondaryDaughterSigmaplus, //! Daughter from a Sigma^plus decay
676676
kSecondaryDaughterSigma0, //! Daughter from a Sigma^0 decay
677-
kSecondaryDaughterSigmaminus, //! Daughter from a Sigma^- decay
678677
kSecondaryDaughterXiMinus, //! Daughter from a Xi^- decay
679678
kSecondaryDaughterXi0, //! Daughter from a Xi^0 decay
680679
kSecondaryDaughterOmegaMinus, //! Daughter from a Omega^- decay
681680
kSecondaryDaughterXistar0, //! Daughter from a Xi*^0 decay
682681
kSecondaryDaughterXistarMinus, //! Daughter from a Xi*^- decay
683-
kSecondaryDaughterK0Long, //! Daughter from a K0 long decay
684-
kSecondaryDaughterK0Short, //! Daughter from a K0 short decay
685-
kSecondaryDaughterKCharged, //! Daughter from a charged kaon decay
686-
kSecondaryDaughterPionCharged, //! Daughter from a charged pion decay
687682
kElse, //! none of the above; (NOTE: used to catch bugs. will be removed once MC usage is properly validated)
688683
kNOriginMCTruthTypes
689684
};
@@ -695,38 +690,8 @@ static constexpr std::string_view ParticleOriginMCTruthName[kNOriginMCTruthTypes
695690
"_Material",
696691
"_NotPrimary",
697692
"_Fake",
698-
"_WrongCollision",
699693
"_SecondaryDaughterLambda",
700-
"_SecondaryDaughterSigmaplus",
701-
"_SecondaryDaughterSigma0",
702-
"_SecondaryDaughterSigmaminus",
703-
"_SecondaryDaughterXiMinus",
704-
"_SecondaryDaughterXi0",
705-
"_SecondaryDaughterOmegaMinus",
706-
"_SecondaryDaughterXistar0",
707-
"_SecondaryDaughterXistarMinus",
708-
"_SecondaryDaughterK0Long",
709-
"_SecondaryDaughterK0Short",
710-
"_SecondaryDaughterKCharged",
711-
"_SecondaryDaughterPionCharged",
712-
"_Else"};
713-
714-
inline constexpr bool isSecondaryOrigin(uint8_t origin)
715-
{
716-
return origin == kSecondary || origin == kSecondaryDaughterLambda ||
717-
origin == kSecondaryDaughterSigmaplus ||
718-
origin == kSecondaryDaughterSigma0 ||
719-
origin == kSecondaryDaughterSigmaminus ||
720-
origin == kSecondaryDaughterXiMinus ||
721-
origin == kSecondaryDaughterXi0 ||
722-
origin == kSecondaryDaughterOmegaMinus ||
723-
origin == kSecondaryDaughterXistar0 ||
724-
origin == kSecondaryDaughterXistarMinus ||
725-
origin == kSecondaryDaughterK0Long ||
726-
origin == kSecondaryDaughterK0Short ||
727-
origin == kSecondaryDaughterKCharged ||
728-
origin == kSecondaryDaughterPionCharged;
729-
}
694+
"_SecondaryDaughterSigmaPlus"};
730695

731696
/// Distinguished between reconstructed and truth
732697
enum MCType {

PWGCF/FemtoDream/Core/femtoDreamParticleHisto.h

Lines changed: 2 additions & 97 deletions
Large diffs are not rendered by default.

PWGCF/FemtoDream/Core/femtoDreamUtils.h

Lines changed: 0 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -131,33 +131,6 @@ inline int checkDaughterType(o2::aod::femtodreamparticle::ParticleType partType,
131131
case kSigmaPlus:
132132
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterSigmaplus;
133133
break;
134-
case kSigma0:
135-
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterSigma0;
136-
break;
137-
case kSigmaMinus:
138-
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterSigmaminus;
139-
break;
140-
case kXiMinus:
141-
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterXiMinus;
142-
break;
143-
case o2::constants::physics::Pdg::kXi0:
144-
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterXi0;
145-
break;
146-
case kOmegaMinus:
147-
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterOmegaMinus;
148-
break;
149-
case kK0Long:
150-
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterK0Long;
151-
break;
152-
case kK0Short:
153-
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterK0Short;
154-
break;
155-
case kKPlus:
156-
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterKCharged;
157-
break;
158-
case kPiPlus:
159-
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterPionCharged;
160-
break;
161134
default:
162135
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondary;
163136
} // switch
@@ -185,33 +158,6 @@ inline int checkDaughterType(o2::aod::femtodreamparticle::ParticleType partType,
185158
case kSigmaPlus:
186159
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterSigmaplus;
187160
break;
188-
case kSigma0:
189-
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterSigma0;
190-
break;
191-
case kSigmaMinus:
192-
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterSigmaminus;
193-
break;
194-
case kXiMinus:
195-
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterXiMinus;
196-
break;
197-
case o2::constants::physics::Pdg::kXi0:
198-
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterXi0;
199-
break;
200-
case kOmegaMinus:
201-
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterOmegaMinus;
202-
break;
203-
case kK0Long:
204-
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterK0Long;
205-
break;
206-
case kK0Short:
207-
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterK0Short;
208-
break;
209-
case kKPlus:
210-
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterKCharged;
211-
break;
212-
case kPiPlus:
213-
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondaryDaughterPionCharged;
214-
break;
215161
default:
216162
partOrigin = aod::femtodreamMCparticle::ParticleOriginMCTruth::kSecondary;
217163
} // switch

PWGCF/FemtoUniverse/Core/FemtoUniverseEfficiencyCorrection.h

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -167,14 +167,6 @@ class EfficiencyCorrection
167167
case (o2::aod::femtouniverse_mc_particle::kDaughter):
168168
case (o2::aod::femtouniverse_mc_particle::kDaughterLambda):
169169
case (o2::aod::femtouniverse_mc_particle::kDaughterSigmaplus):
170-
case (o2::aod::femtouniverse_mc_particle::kDaughterSigma0):
171-
case (o2::aod::femtouniverse_mc_particle::kDaughterSigmaminus):
172-
case (o2::aod::femtouniverse_mc_particle::kDaughterXi):
173-
case (o2::aod::femtouniverse_mc_particle::kDaughterOmega):
174-
case (o2::aod::femtouniverse_mc_particle::kDaughterK0Long):
175-
case (o2::aod::femtouniverse_mc_particle::kDaughterK0Short):
176-
case (o2::aod::femtouniverse_mc_particle::kDaughterKCharged):
177-
case (o2::aod::femtouniverse_mc_particle::kDaughterPionCharged):
178170
histRegistry->fill(HIST(histDirectory) + HIST("/") + HIST(histSuffix[N - 1]) + HIST("/hSecondary"),
179171
mcParticle.pt(),
180172
mcParticle.eta(),

PWGCF/FemtoUniverse/Core/FemtoUniverseParticleHisto.h

Lines changed: 0 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -171,14 +171,6 @@ class FemtoUniverseParticleHisto
171171
mHistogramRegistry->add((folderName + folderSuffix + "/Debug/hPDGmother_Else").c_str(), "; PDG mother; Entries", o2::framework::HistType::kTH1I, {{6001, -3000.5, 3000.5}});
172172
mHistogramRegistry->add((folderName + folderSuffix + "/Debug/hPDGmother_DaughterLambda").c_str(), "; PDG mother; Entries", o2::framework::HistType::kTH1I, {{12001, -6000.5, 6000.5}});
173173
mHistogramRegistry->add((folderName + folderSuffix + "/Debug/hPDGmother_DaughterSigmaplus").c_str(), "; PDG mother; Entries", o2::framework::HistType::kTH1I, {{12001, -6000.5, 6000.5}});
174-
mHistogramRegistry->add((folderName + folderSuffix + "/Debug/hPDGmother_DaughterSigma0").c_str(), "; PDG mother; Entries", o2::framework::HistType::kTH1I, {{12001, -6000.5, 6000.5}});
175-
mHistogramRegistry->add((folderName + folderSuffix + "/Debug/hPDGmother_DaughterSigmaminus").c_str(), "; PDG mother; Entries", o2::framework::HistType::kTH1I, {{12001, -6000.5, 6000.5}});
176-
mHistogramRegistry->add((folderName + folderSuffix + "/Debug/hPDGmother_DaughterXi").c_str(), "; PDG mother; Entries", o2::framework::HistType::kTH1I, {{12001, -6000.5, 6000.5}});
177-
mHistogramRegistry->add((folderName + folderSuffix + "/Debug/hPDGmother_DaughterOmega").c_str(), "; PDG mother; Entries", o2::framework::HistType::kTH1I, {{12001, -6000.5, 6000.5}});
178-
mHistogramRegistry->add((folderName + folderSuffix + "/Debug/hPDGmother_DaughterK0Long").c_str(), "; PDG mother; Entries", o2::framework::HistType::kTH1I, {{12001, -6000.5, 6000.5}});
179-
mHistogramRegistry->add((folderName + folderSuffix + "/Debug/hPDGmother_DaughterK0Short").c_str(), "; PDG mother; Entries", o2::framework::HistType::kTH1I, {{12001, -6000.5, 6000.5}});
180-
mHistogramRegistry->add((folderName + folderSuffix + "/Debug/hPDGmother_DaughterKCharged").c_str(), "; PDG mother; Entries", o2::framework::HistType::kTH1I, {{12001, -6000.5, 6000.5}});
181-
mHistogramRegistry->add((folderName + folderSuffix + "/Debug/hPDGmother_DaughterPionCharged").c_str(), "; PDG mother; Entries", o2::framework::HistType::kTH1I, {{12001, -6000.5, 6000.5}});
182174

183175
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_Primary").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
184176
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_Daughter").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
@@ -188,14 +180,6 @@ class FemtoUniverseParticleHisto
188180
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_Else").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
189181
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterLambda").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
190182
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterSigmaplus").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
191-
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterSigma0").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
192-
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterSigmaminus").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
193-
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterXi").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
194-
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterOmega").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
195-
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterK0Long").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
196-
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterK0Short").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
197-
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterKCharged").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
198-
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterPionCharged").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
199183
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_NoMCTruthOrigin").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
200184
mHistogramRegistry->add((folderName + folderSuffix + "/hMisidentification").c_str(), "; #it{p}_{T} (GeV/#it{c}); Particle; Particle", o2::framework::HistType::kTH3F, {{4, 0, 4}, {4, 0, 4}, tempFitVarpTAxis});
201185

@@ -211,14 +195,6 @@ class FemtoUniverseParticleHisto
211195

212196
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterLambda").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
213197
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterSigmaplus").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
214-
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterSigma0").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
215-
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterSigmaminus").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
216-
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterXi").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
217-
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterOmega").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
218-
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterK0Long").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
219-
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterK0Short").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
220-
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterKCharged").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
221-
mHistogramRegistry->add((folderName + folderSuffix + "/hDCAxy_DaughterPionCharged").c_str(), "; #it{p}_{T} (GeV/#it{c}); DCA_{xy} (cm)", o2::framework::HistType::kTH2F, {tempFitVarpTAxis, tempFitVarAxis});
222198
}
223199

224200
} else if constexpr (mParticleType == o2::aod::femtouniverseparticle::ParticleType::kV0) {
@@ -431,38 +407,6 @@ class FemtoUniverseParticleHisto
431407
// mHistogramRegistry->fill(histFolder + HIST("_MC/Debug/hPDGmother_DaughterSigmaplus"), part.fdMCParticle().motherPDG());
432408
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_DaughterSigmaplus"), part.pt(), part.tempFitVar());
433409
break;
434-
case (o2::aod::femtouniverse_mc_particle::kDaughterSigma0):
435-
// mHistogramRegistry->fill(histFolder + HIST("_MC/Debug/hPDGmother_DaughterSigma0"), part.fdMCParticle().motherPDG());
436-
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_DaughterSigma0"), part.pt(), part.tempFitVar());
437-
break;
438-
case (o2::aod::femtouniverse_mc_particle::kDaughterSigmaminus):
439-
// mHistogramRegistry->fill(histFolder + HIST("_MC/Debug/hPDGmother_DaughterSigmaminus"), part.fdMCParticle().motherPDG());
440-
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_DaughterSigmaminus"), part.pt(), part.tempFitVar());
441-
break;
442-
case (o2::aod::femtouniverse_mc_particle::kDaughterXi):
443-
// mHistogramRegistry->fill(histFolder + HIST("_MC/Debug/hPDGmother_DaughterXi"), part.fdMCParticle().motherPDG());
444-
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_DaughterXi"), part.pt(), part.tempFitVar());
445-
break;
446-
case (o2::aod::femtouniverse_mc_particle::kDaughterOmega):
447-
// mHistogramRegistry->fill(histFolder + HIST("_MC/Debug/hPDGmother_DaughterOmega"), part.fdMCParticle().motherPDG());
448-
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_DaughterOmega"), part.pt(), part.tempFitVar());
449-
break;
450-
case (o2::aod::femtouniverse_mc_particle::kDaughterK0Long):
451-
// mHistogramRegistry->fill(histFolder + HIST("_MC/Debug/hPDGmother_DaughterK0Long"), part.fdMCParticle().motherPDG());
452-
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_DaughterK0Long"), part.pt(), part.tempFitVar());
453-
break;
454-
case (o2::aod::femtouniverse_mc_particle::kDaughterK0Short):
455-
// mHistogramRegistry->fill(histFolder + HIST("_MC/Debug/hPDGmother_DaughterK0Short"), part.fdMCParticle().motherPDG());
456-
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_DaughterK0Short"), part.pt(), part.tempFitVar());
457-
break;
458-
case (o2::aod::femtouniverse_mc_particle::kDaughterKCharged):
459-
// mHistogramRegistry->fill(histFolder + HIST("_MC/Debug/hPDGmother_DaughterKCharged"), part.fdMCParticle().motherPDG());
460-
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_DaughterKCharged"), part.pt(), part.tempFitVar());
461-
break;
462-
case (o2::aod::femtouniverse_mc_particle::kDaughterPionCharged):
463-
// mHistogramRegistry->fill(histFolder + HIST("_MC/Debug/hPDGmother_DaughterPionCharged"), part.fdMCParticle().motherPDG());
464-
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_DaughterPionCharged"), part.pt(), part.tempFitVar());
465-
break;
466410
case (o2::aod::femtouniverse_mc_particle::kElse):
467411
// mHistogramRegistry->fill(histFolder + HIST("_MC/Debug/hPDGmother_Else"), part.fdMCParticle().motherPDG());
468412
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_Else"), part.pt(), part.tempFitVar());
@@ -494,30 +438,6 @@ class FemtoUniverseParticleHisto
494438
case (o2::aod::femtouniverse_mc_particle::kDaughterSigmaplus):
495439
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_DaughterSigmaplus"), part.pt(), part.tempFitVar());
496440
break;
497-
case (o2::aod::femtouniverse_mc_particle::kDaughterSigma0):
498-
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_DaughterSigma0"), part.pt(), part.tempFitVar());
499-
break;
500-
case (o2::aod::femtouniverse_mc_particle::kDaughterSigmaminus):
501-
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_DaughterSigmaminus"), part.pt(), part.tempFitVar());
502-
break;
503-
case (o2::aod::femtouniverse_mc_particle::kDaughterXi):
504-
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_DaughterXi"), part.pt(), part.tempFitVar());
505-
break;
506-
case (o2::aod::femtouniverse_mc_particle::kDaughterOmega):
507-
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_DaughterOmega"), part.pt(), part.tempFitVar());
508-
break;
509-
case (o2::aod::femtouniverse_mc_particle::kDaughterK0Long):
510-
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_DaughterK0Long"), part.pt(), part.tempFitVar());
511-
break;
512-
case (o2::aod::femtouniverse_mc_particle::kDaughterK0Short):
513-
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_DaughterK0Short"), part.pt(), part.tempFitVar());
514-
break;
515-
case (o2::aod::femtouniverse_mc_particle::kDaughterKCharged):
516-
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_DaughterKCharged"), part.pt(), part.tempFitVar());
517-
break;
518-
case (o2::aod::femtouniverse_mc_particle::kDaughterPionCharged):
519-
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_DaughterPionCharged"), part.pt(), part.tempFitVar());
520-
break;
521441
case (o2::aod::femtouniverse_mc_particle::kElse):
522442
mHistogramRegistry->fill(histFolder + HIST("_MC/hDCAxy_Else"), part.pt(), part.tempFitVar());
523443
break;

0 commit comments

Comments
 (0)