@@ -683,7 +683,7 @@ struct StrangeCascTrack {
683683 }
684684
685685 // statistics - compare gen and reco pt and rapidity
686- int pdgCharmBeautyCodes = 4000 ;
686+ int charmBeautyCodes = 4000 ;
687687 if constexpr (requires { collision.straMCCollisionId (); }) {
688688 if constexpr (requires { stdCasc.has_cascMCCore (); }) {
689689 auto cascmccore = stdCasc.template cascMCCore_as <DerMCGenCascades>();
@@ -704,7 +704,7 @@ struct StrangeCascTrack {
704704 histos.fill (HIST (TypeNames[Type]) + HIST (" /NoSel-Truth/GenRecRapidityXi" ), genYXi, cascade.yXi ());
705705 histos.fill (HIST (TypeNames[Type]) + HIST (" /NoSel-Truth/DCA/DCAxyPrimaryXi" ), cascade.dcaXYCascToPV (), pt, mult);
706706 histos.fill (HIST (TypeNames[Type]) + HIST (" /NoSel-Truth/DCA/DCAzPrimaryXi" ), cascade.dcaZCascToPV (), pt, mult);
707- if (std::abs (cascmccore.pdgCodeMother ()) > pdgCharmBeautyCodes ) {
707+ if (std::abs (cascmccore.pdgCodeMother ()) > charmBeautyCodes ) {
708708 histos.fill (HIST (TypeNames[Type]) + HIST (" /NoSel-Truth/DCA/DCAxyDecayXi" ), cascade.dcaXYCascToPV (), pt, mult);
709709 histos.fill (HIST (TypeNames[Type]) + HIST (" /NoSel-Truth/DCA/DCAzDecayXi" ), cascade.dcaZCascToPV (), pt, mult);
710710 } else {
@@ -719,7 +719,7 @@ struct StrangeCascTrack {
719719 histos.fill (HIST (TypeNames[Type]) + HIST (" /Rec-Truth/DCA/DCAxyPrimaryXi" ), cascade.dcaXYCascToPV (), pt, mult);
720720 histos.fill (HIST (TypeNames[Type]) + HIST (" /Rec-Truth/DCA/DCAzPrimaryXi" ), cascade.dcaZCascToPV (), pt, mult);
721721 histos.fill (HIST (TypeNames[Type]) + HIST (" /Rec-Truth/Radius/PrimaryXi" ), cascade.cascradius (), pt);
722- if (std::abs (cascmccore.pdgCodeMother ()) > pdgCharmBeautyCodes ) {
722+ if (std::abs (cascmccore.pdgCodeMother ()) > charmBeautyCodes ) {
723723 histos.fill (HIST (TypeNames[Type]) + HIST (" /Rec-Truth/DCA/DCAxyDecayXi" ), cascade.dcaXYCascToPV (), pt, mult);
724724 histos.fill (HIST (TypeNames[Type]) + HIST (" /Rec-Truth/DCA/DCAzDecayXi" ), cascade.dcaZCascToPV (), pt, mult);
725725 } else {
@@ -732,7 +732,7 @@ struct StrangeCascTrack {
732732 histos.fill (HIST (TypeNames[Type]) + HIST (" /NoSel-Truth/GenRecRapidityOmega" ), genYOmega, cascade.yOmega ());
733733 histos.fill (HIST (TypeNames[Type]) + HIST (" /NoSel-Truth/DCA/DCAxyPrimaryOmega" ), cascade.dcaXYCascToPV (), pt, mult);
734734 histos.fill (HIST (TypeNames[Type]) + HIST (" /NoSel-Truth/DCA/DCAzPrimaryOmega" ), cascade.dcaZCascToPV (), pt, mult);
735- if (std::abs (cascmccore.pdgCodeMother ()) > pdgCharmBeautyCodes ) {
735+ if (std::abs (cascmccore.pdgCodeMother ()) > charmBeautyCodes ) {
736736 histos.fill (HIST (TypeNames[Type]) + HIST (" /NoSel-Truth/DCA/DCAxyDecayOmega" ), cascade.dcaXYCascToPV (), pt, mult);
737737 histos.fill (HIST (TypeNames[Type]) + HIST (" /NoSel-Truth/DCA/DCAzDecayOmega" ), cascade.dcaZCascToPV (), pt, mult);
738738 } else {
@@ -747,7 +747,7 @@ struct StrangeCascTrack {
747747 histos.fill (HIST (TypeNames[Type]) + HIST (" /Rec-Truth/DCA/DCAxyPrimaryOmega" ), cascade.dcaXYCascToPV (), pt, mult);
748748 histos.fill (HIST (TypeNames[Type]) + HIST (" /Rec-Truth/DCA/DCAzPrimaryOmega" ), cascade.dcaZCascToPV (), pt, mult);
749749 histos.fill (HIST (TypeNames[Type]) + HIST (" /Rec-Truth/Radius/PrimaryOmega" ), cascade.cascradius (), pt);
750- if (std::abs (cascmccore.pdgCodeMother ()) > pdgCharmBeautyCodes ) {
750+ if (std::abs (cascmccore.pdgCodeMother ()) > charmBeautyCodes ) {
751751 histos.fill (HIST (TypeNames[Type]) + HIST (" /Rec-Truth/DCA/DCAxyDecayOmega" ), cascade.dcaXYCascToPV (), pt, mult);
752752 histos.fill (HIST (TypeNames[Type]) + HIST (" /Rec-Truth/DCA/DCAzDecayOmega" ), cascade.dcaZCascToPV (), pt, mult);
753753 } else {
0 commit comments