@@ -184,10 +184,12 @@ struct singleTrackSelector {
184184 registry.add (" hGen_EtaPhiPt_Deuteron" , " Gen (anti)deuteron in true collisions" , {HistType::kTH3F , {{100 , -1 ., 1 ., " #eta" }, {157 , 0 ., o2::constants::math::TwoPI, " #phi" }, {100 , -5 .f , 5 .f , " p_{T} GeV/c" }}});
185185 registry.add (" hGen_EtaPhiPt_Helium3" , " Gen (anti)Helium3 in true collisions" , {HistType::kTH3F , {{100 , -1 ., 1 ., " #eta" }, {157 , 0 ., o2::constants::math::TwoPI, " #phi" }, {100 , -5 .f , 5 .f , " p_{T} GeV/c" }}});
186186 registry.add (" hGen_EtaPhiPt_Triton" , " Gen (anti)triton in true collisions" , {HistType::kTH3F , {{100 , -1 ., 1 ., " #eta" }, {157 , 0 ., o2::constants::math::TwoPI, " #phi" }, {100 , -5 .f , 5 .f , " p_{T} GeV/c" }}});
187+ registry.add (" hGen_EtaYPt_Triton" , " Gen (anti)triton in true collisions" , {HistType::kTH3F , {{100 , -1 ., 1 ., " #eta" }, {100 , -1 ., 1 ., " y" }, {100 , -5 .f , 5 .f , " p_{T} GeV/c" }}});
187188 registry.add (" hReco_EtaPhiPt_Proton" , " Gen (anti)protons in reco collisions" , {HistType::kTH3F , {{100 , -1 ., 1 ., " #eta" }, {157 , 0 ., o2::constants::math::TwoPI, " #phi" }, {100 , -5 .f , 5 .f , " p_{T} GeV/c" }}});
188189 registry.add (" hReco_EtaPhiPt_Deuteron" , " Gen (anti)deuteron in reco collisions" , {HistType::kTH3F , {{100 , -1 ., 1 ., " #eta" }, {157 , 0 ., o2::constants::math::TwoPI, " #phi" }, {100 , -5 .f , 5 .f , " p_{T} GeV/c" }}});
189190 registry.add (" hReco_EtaPhiPt_Helium3" , " Gen (anti)Helium3 in reco collisions" , {HistType::kTH3F , {{100 , -1 ., 1 ., " #eta" }, {157 , 0 ., o2::constants::math::TwoPI, " #phi" }, {100 , -5 .f , 5 .f , " p_{T} GeV/c" }}});
190191 registry.add (" hReco_EtaPhiPt_Triton" , " Gen (anti)triton in reco collisions" , {HistType::kTH3F , {{100 , -1 ., 1 ., " #eta" }, {157 , 0 ., o2::constants::math::TwoPI, " #phi" }, {100 , -5 .f , 5 .f , " p_{T} GeV/c" }}});
192+ registry.add (" hReco_EtaYPt_Triton" , " Gen (anti)triton in reco collisions" , {HistType::kTH3F , {{100 , -1 ., 1 ., " #eta" }, {100 , -1 ., 1 ., " y" }, {100 , -5 .f , 5 .f , " p_{T} GeV/c" }}});
191193 }
192194 }
193195
@@ -587,8 +589,11 @@ struct singleTrackSelector {
587589
588590 if (mcParticle.pdgCode () == 1000010030 ) {
589591 registry.fill (HIST (" hReco_EtaPhiPt_Triton" ), mcParticle.eta (), mcParticle.phi (), mcParticle.pt ());
592+ registry.fill (HIST (" hReco_EtaYPt_Triton" ), mcParticle.eta (), mcParticle.y (), mcParticle.pt ());
593+
590594 } else if (mcParticle.pdgCode () == -1000010030 ) {
591595 registry.fill (HIST (" hReco_EtaPhiPt_Triton" ), mcParticle.eta (), mcParticle.phi (), mcParticle.pt () * -1 );
596+ registry.fill (HIST (" hReco_EtaYPt_Triton" ), mcParticle.eta (), mcParticle.y (), mcParticle.pt () * -1 );
592597 }
593598 }
594599 }
@@ -633,8 +638,10 @@ struct singleTrackSelector {
633638
634639 if (mcParticle.pdgCode () == 1000010030 ) {
635640 registry.fill (HIST (" hGen_EtaPhiPt_Triton" ), mcParticle.eta (), mcParticle.phi (), mcParticle.pt ());
641+ registry.fill (HIST (" hGen_EtaYPt_Triton" ), mcParticle.eta (), mcParticle.y (), mcParticle.pt ());
636642 } else if (mcParticle.pdgCode () == -1000010030 ) {
637643 registry.fill (HIST (" hGen_EtaPhiPt_Triton" ), mcParticle.eta (), mcParticle.phi (), mcParticle.pt () * -1 );
644+ registry.fill (HIST (" hGen_EtaYPt_Triton" ), mcParticle.eta (), mcParticle.y (), mcParticle.pt () * -1 );
638645 }
639646 }
640647 }
0 commit comments