@@ -175,7 +175,7 @@ struct HfCandidateCreator2Prong {
175175
176176 // / reject candidates not satisfying the event selections
177177 auto collision = rowTrackIndexProng2.template collision_as <Coll>();
178- const uint16_t rejectionMask = getHfCollisionRejectionMask<centEstimator>(collision, centralityMin, centralityMax, useSel8Trigger, maxPvPosZ, useTimeFrameBorderCut);
178+ const auto rejectionMask = getHfCollisionRejectionMask<centEstimator>(collision, centralityMin, centralityMax, useSel8Trigger, maxPvPosZ, useTimeFrameBorderCut);
179179 if (rejectionMask != 0 ) {
180180 // / at least one event selection not satisfied --> reject the candidate
181181 continue ;
@@ -304,7 +304,7 @@ struct HfCandidateCreator2Prong {
304304
305305 // / reject candidates in collisions not satisfying the event selections
306306 auto collision = rowTrackIndexProng2.template collision_as <Coll>();
307- const uint16_t rejectionMask = getHfCollisionRejectionMask<centEstimator>(collision, centralityMin, centralityMax, useSel8Trigger, maxPvPosZ, useTimeFrameBorderCut);
307+ const auto rejectionMask = getHfCollisionRejectionMask<centEstimator>(collision, centralityMin, centralityMax, useSel8Trigger, maxPvPosZ, useTimeFrameBorderCut);
308308 if (rejectionMask != 0 ) {
309309 // / at least one event selection not satisfied --> reject the candidate
310310 continue ;
@@ -583,7 +583,7 @@ struct HfCandidateCreator2Prong {
583583 for (const auto & collision : collisions) {
584584
585585 // / bitmask with event. selection info
586- const uint16_t rejectionMask = getHfCollisionRejectionMask<CentralityEstimator::None>(collision, centralityMin, centralityMax, useSel8Trigger, maxPvPosZ, useTimeFrameBorderCut);
586+ const auto rejectionMask = getHfCollisionRejectionMask<CentralityEstimator::None>(collision, centralityMin, centralityMax, useSel8Trigger, maxPvPosZ, useTimeFrameBorderCut);
587587
588588 // / monitor the satisfied event selections
589589 monitorCollision (collision, rejectionMask, hCollisions.object , hPosZBeforeEvSel.object , hPosZAfterEvSel.object );
@@ -599,7 +599,7 @@ struct HfCandidateCreator2Prong {
599599 for (const auto & collision : collisions) {
600600
601601 // / bitmask with event. selection info
602- const uint16_t rejectionMask = getHfCollisionRejectionMask<CentralityEstimator::FT0C >(collision, centralityMin, centralityMax, useSel8Trigger, maxPvPosZ, useTimeFrameBorderCut);
602+ const auto rejectionMask = getHfCollisionRejectionMask<CentralityEstimator::FT0C >(collision, centralityMin, centralityMax, useSel8Trigger, maxPvPosZ, useTimeFrameBorderCut);
603603
604604 // / monitor the satisfied event selections
605605 monitorCollision (collision, rejectionMask, hCollisions.object , hPosZBeforeEvSel.object , hPosZAfterEvSel.object );
@@ -615,7 +615,7 @@ struct HfCandidateCreator2Prong {
615615 for (const auto & collision : collisions) {
616616
617617 // / bitmask with event. selection info
618- const uint16_t rejectionMask = getHfCollisionRejectionMask<CentralityEstimator::FT0M >(collision, centralityMin, centralityMax, useSel8Trigger, maxPvPosZ, useTimeFrameBorderCut);
618+ const auto rejectionMask = getHfCollisionRejectionMask<CentralityEstimator::FT0M >(collision, centralityMin, centralityMax, useSel8Trigger, maxPvPosZ, useTimeFrameBorderCut);
619619
620620 // / monitor the satisfied event selections
621621 monitorCollision (collision, rejectionMask, hCollisions.object , hPosZBeforeEvSel.object , hPosZAfterEvSel.object );
0 commit comments