You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Configurable<float> collisionsPosZMaxCut{"collisionsPosZMaxCut", 10.0, "max Z position cut on collisions"};
145
145
Configurable<bool> cutNumContribs{"cutNumContribs", true, "cut on number of contributors"};
@@ -408,7 +408,7 @@ struct UpcRhoAnalysis {
408
408
template <typename C>
409
409
boolisGoodRctFlag(const C& collision)
410
410
{
411
-
switch (cutRCTflag) {
411
+
switch (cutRctFlag) {
412
412
case1:
413
413
return sgSelector.isCBTOk(collision);
414
414
case2:
@@ -438,7 +438,7 @@ struct UpcRhoAnalysis {
438
438
if (useRecoFlag && (collision.flags() != cutRecoFlag)) // check reconstruction mode
439
439
returnfalse;
440
440
441
-
if (useTrueGap && (collision.gapSide() != sgSelector.trueGap(collision, cutTrueGapSideFV0, cutTrueGapSideFT0A, cutTrueGapSideFT0C, cutTrueGapSideZDC))) // check true gap side
441
+
if (useTrueGap && (gapSide != sgSelector.trueGap(collision, cutTrueGapSideFV0, cutTrueGapSideFT0A, cutTrueGapSideFT0C, cutTrueGapSideZDC))) // check true gap side
0 commit comments