@@ -216,7 +216,7 @@ struct ConfPairBinning : o2::framework::ConfigurableGroup {
216216 o2::framework::ConfigurableAxis pt2{" pt2" , {{100 , 0 , 6 }}, " Pt binning for particle 2" };
217217 o2::framework::ConfigurableAxis mass1{" mass1" , {{100 , 0 , 2 }}, " Mass binning for particle 1 (if particle has mass getter, otherwise PDG mass)" };
218218 o2::framework::ConfigurableAxis mass2{" mass2" , {{100 , 0 , 2 }}, " Mass binning for particle 2 (if particle has mass getter, otherwise PDG mass)" };
219- o2::framework::ConfigurableAxis massInv{" massInv" , {{100 , 0 , 2 }}, " Invariant Mass binning" };
219+ o2::framework::ConfigurableAxis massInv{" massInv" , {{100 , 0 , 5 }}, " Invariant Mass binning" };
220220 o2::framework::ConfigurableAxis dalitzMtot{" dalitzMtot" , {{100 , 0 , 10 }}, " Total invariant mass squared binning in darlitz plot" };
221221 o2::framework::ConfigurableAxis dalitzM12{" dalitzM12" , {{100 , 0 , 10 }}, " Mass12 binning of darlitz plot" };
222222 o2::framework::ConfigurableAxis dalitzM13{" dalitzM13" , {{100 , 0 , 10 }}, " Mass13 binning of darlitz plot" };
@@ -705,7 +705,9 @@ class PairHistManager
705705 }
706706
707707 if (mPlotDalitz ) {
708- if constexpr (modes::isEqual (particleType1, modes::Particle::kTrack ) && (modes::isEqual (particleType2, modes::Particle::kV0 ) || modes::isEqual (particleType2, modes::Particle::kCharmHadron ))) {
708+ if constexpr (modes::isEqual (particleType1, modes::Particle::kTrack ) && (modes::isEqual (particleType2, modes::Particle::kV0 ) ||
709+ modes::isEqual (particleType2, modes::Particle::kTwoTrackResonance ) ||
710+ modes::isEqual (particleType2, modes::Particle::kCharmHadron ))) {
709711 auto posDaughter = trackTable.rawIteratorAt (particle2.posDauId () - trackTable.offset ());
710712 auto negDaughter = trackTable.rawIteratorAt (particle2.negDauId () - trackTable.offset ());
711713 ROOT ::Math::PtEtaPhiMVector posDau4v = ROOT::Math::PtEtaPhiMVector (posDaughter.pt (), posDaughter.eta (), posDaughter.phi (), mPdgMassPosDau2 );
0 commit comments