File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
DPG/Tasks/AOTTrack/PID/HMPID Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -319,9 +319,9 @@ struct HmpidQa {
319319 const float distanceMipToTrack = std::hypot (hmpid.xTrack () - hmpid.xMip (), hmpid.yTrack () - hmpid.yMip ());
320320
321321 // quality conditions to check
322- bool physicalChAngle = (hmpid.chAngle () > 0 );
323- bool mipChargeCondition = (hmpid.chargeMip () > cutQmip);
324- bool distanceCondition = (distanceMipToTrack < cutDistanceMipTrack);
322+ const bool physicalChAngle = (hmpid.chAngle () > 0 );
323+ const bool mipChargeCondition = (hmpid.chargeMip () > cutQmip);
324+ const bool distanceCondition = (distanceMipToTrack < cutDistanceMipTrack);
325325
326326 // fill histograms
327327 histos.fill (HIST (" hmpidMomvsTrackMom" ), std::fabs (hmpid.momentumTrack ()), std::fabs (hmpid.momentumHmpid ()));
You can’t perform that action at this time.
0 commit comments