@@ -68,10 +68,10 @@ class FemtoDreamParticleHisto
6868 mHistogramRegistry ->add ((folderName + folderSuffix + " /hpTInvMassAntiLambda" ).c_str (), " ; M_{#bar{#Lambda}}; Entries" , kTH2F , {pTAxis, InvMassAxis});
6969 mHistogramRegistry ->add ((folderName + folderSuffix + " /hInvMassLambdaAntiLambda" ).c_str (), " ; M_{#Lambda}; M_{#bar{#Lambda}}" , kTH2F , {InvMassAxis, InvMassAxis});
7070 }
71- if constexpr (mParticleType == o2::aod::femtodreamparticle::ParticleType::kCascade ){
71+ if constexpr (mParticleType == o2::aod::femtodreamparticle::ParticleType::kCascade ) {
7272 mHistogramRegistry ->add ((folderName + folderSuffix + " /hInvMassCascade" ).c_str (), " ; M_{Cascade}; Entries" , kTH1F , {InvMassAxis});
7373 mHistogramRegistry ->add ((folderName + folderSuffix + " /hpTInvMassCascade" ).c_str (), " ; p_{T} (GeV/#it{c{}); M_{Cascade}" , kTH2F , {pTAxis, InvMassAxis});
74- }
74+ }
7575 }
7676
7777 // comment
@@ -304,18 +304,18 @@ class FemtoDreamParticleHisto
304304 if constexpr (mc == o2::aod::femtodreamMCparticle::MCType::kRecon ) {
305305 mHistogramRegistry ->fill (HIST (o2::aod::femtodreamparticle::ParticleTypeName[mParticleType ]) + HIST (mFolderSuffix [mFolderSuffixType ]) + HIST (o2::aod::femtodreamMCparticle::MCTypeName[mc]) + HIST (o2::aod::femtodreamparticle::TempFitVarName[mParticleType ]), part.pt (), part.tempFitVar ());
306306 }
307- if constexpr ( (mParticleType == o2::aod::femtodreamparticle::ParticleType::kV0 || mParticleType == o2::aod::femtodreamparticle::ParticleType::kCascadeV0 ) && mc == o2::aod::femtodreamMCparticle::MCType::kRecon ) {
307+ if constexpr ((mParticleType == o2::aod::femtodreamparticle::ParticleType::kV0 || mParticleType == o2::aod::femtodreamparticle::ParticleType::kCascadeV0 ) && mc == o2::aod::femtodreamMCparticle::MCType::kRecon ) {
308308 mHistogramRegistry ->fill (HIST (o2::aod::femtodreamparticle::ParticleTypeName[mParticleType ]) + HIST (mFolderSuffix [mFolderSuffixType ]) + HIST (o2::aod::femtodreamMCparticle::MCTypeName[mc]) + HIST (" /hInvMassLambda" ), part.mLambda ());
309309 mHistogramRegistry ->fill (HIST (o2::aod::femtodreamparticle::ParticleTypeName[mParticleType ]) + HIST (mFolderSuffix [mFolderSuffixType ]) + HIST (o2::aod::femtodreamMCparticle::MCTypeName[mc]) + HIST (" /hpTInvMassLambda" ), part.pt (), part.mLambda ());
310310 mHistogramRegistry ->fill (HIST (o2::aod::femtodreamparticle::ParticleTypeName[mParticleType ]) + HIST (mFolderSuffix [mFolderSuffixType ]) + HIST (o2::aod::femtodreamMCparticle::MCTypeName[mc]) + HIST (" /hInvMassAntiLambda" ), part.mAntiLambda ());
311311 mHistogramRegistry ->fill (HIST (o2::aod::femtodreamparticle::ParticleTypeName[mParticleType ]) + HIST (mFolderSuffix [mFolderSuffixType ]) + HIST (o2::aod::femtodreamMCparticle::MCTypeName[mc]) + HIST (" /hpTInvMassAntiLambda" ), part.pt (), part.mAntiLambda ());
312312 mHistogramRegistry ->fill (HIST (o2::aod::femtodreamparticle::ParticleTypeName[mParticleType ]) + HIST (mFolderSuffix [mFolderSuffixType ]) + HIST (o2::aod::femtodreamMCparticle::MCTypeName[mc]) + HIST (" /hInvMassLambdaAntiLambda" ), part.mLambda (), part.mAntiLambda ());
313313 }
314- if constexpr (mParticleType == o2::aod::femtodreamparticle::ParticleType::kCascade ){
314+ if constexpr (mParticleType == o2::aod::femtodreamparticle::ParticleType::kCascade ) {
315315 mHistogramRegistry ->fill (HIST (o2::aod::femtodreamparticle::ParticleTypeName[mParticleType ]) + HIST (mFolderSuffix [mFolderSuffixType ]) + HIST (o2::aod::femtodreamMCparticle::MCTypeName[mc]) + HIST (" /hInvMassCascade" ), part.mLambda ());
316316 mHistogramRegistry ->fill (HIST (o2::aod::femtodreamparticle::ParticleTypeName[mParticleType ]) + HIST (mFolderSuffix [mFolderSuffixType ]) + HIST (o2::aod::femtodreamMCparticle::MCTypeName[mc]) + HIST (" /hpTInvMassCascade" ), part.pt (), part.mLambda ());
317- // mHistogramRegistry->fill(HIST(o2::aod::femtodreamparticle::ParticleTypeName[mParticleType]) + HIST(mFolderSuffix[mFolderSuffixType]) + HIST(o2::aod::femtodreamMCparticle::MCTypeName[mc]) + HIST("/hInvMassCascade"), part.mLambda());
318- // mHistogramRegistry->fill(HIST(o2::aod::femtodreamparticle::ParticleTypeName[mParticleType]) + HIST(mFolderSuffix[mFolderSuffixType]) + HIST(o2::aod::femtodreamMCparticle::MCTypeName[mc]) + HIST("/hpTInvMassCascade"), part.pt(), part.mLambda());
317+ // mHistogramRegistry->fill(HIST(o2::aod::femtodreamparticle::ParticleTypeName[mParticleType]) + HIST(mFolderSuffix[mFolderSuffixType]) + HIST(o2::aod::femtodreamMCparticle::MCTypeName[mc]) + HIST("/hInvMassCascade"), part.mLambda());
318+ // mHistogramRegistry->fill(HIST(o2::aod::femtodreamparticle::ParticleTypeName[mParticleType]) + HIST(mFolderSuffix[mFolderSuffixType]) + HIST(o2::aod::femtodreamMCparticle::MCTypeName[mc]) + HIST("/hpTInvMassCascade"), part.pt(), part.mLambda());
319319 }
320320 }
321321
@@ -437,7 +437,7 @@ class FemtoDreamParticleHisto
437437 pidTPC,
438438 pidTOF);
439439 }
440- } else if constexpr (mParticleType == o2::aod::femtodreamparticle::ParticleType::kV0 || mParticleType == o2::aod::femtodreamparticle::ParticleType::kCascadeV0 ) {
440+ } else if constexpr (mParticleType == o2::aod::femtodreamparticle::ParticleType::kV0 || mParticleType == o2::aod::femtodreamparticle::ParticleType::kCascadeV0 ) {
441441 mHistogramRegistry ->fill (HIST (o2::aod::femtodreamparticle::ParticleTypeName[mParticleType ]) + HIST (mFolderSuffix [mFolderSuffixType ]) + HIST (o2::aod::femtodreamMCparticle::MCTypeName[mc]) + HIST (" /hDaughDCA" ), part.daughDCA ());
442442 mHistogramRegistry ->fill (HIST (o2::aod::femtodreamparticle::ParticleTypeName[mParticleType ]) + HIST (mFolderSuffix [mFolderSuffixType ]) + HIST (o2::aod::femtodreamMCparticle::MCTypeName[mc]) + HIST (" /hTransRadius" ), part.transRadius ());
443443 mHistogramRegistry ->fill (HIST (o2::aod::femtodreamparticle::ParticleTypeName[mParticleType ]) + HIST (mFolderSuffix [mFolderSuffixType ]) + HIST (o2::aod::femtodreamMCparticle::MCTypeName[mc]) + HIST (" /hDecayVtxX" ), part.decayVtxX ());
0 commit comments