File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -329,11 +329,11 @@ struct centralityStudypp {
329329 float multNTracksGlobal = collision.multNTracksGlobal ();
330330 float mftNtracks = collision.mftNtracks ();
331331 float multNTracksPV = collision.multNTracksPV ();
332-
332+
333333 if (applyVertexZEqualization) {
334334 float epsilon = 1e-2 ; // average value after which this collision will be disregarded
335335 float maxVertexZ = 15 .0f ; // max value for any equalization attempt
336-
336+
337337 // same defaults as multCentTable in case of unhealthy signals
338338 multFV0A = 0 .0f ;
339339 multFT0A = 0 .0f ;
@@ -344,7 +344,7 @@ struct centralityStudypp {
344344 mftNtracks = 0 .0f ;
345345 multNTracksPV = 0 .0f ;
346346
347- if (std::abs (collision.multPVz ()) < maxVertexZ){ // operate consistently vs multCentTable
347+ if (std::abs (collision.multPVz ()) < maxVertexZ) { // operate consistently vs multCentTable
348348 if (hVtxZFV0A->Interpolate (collision.multPVz ()) > epsilon && collision.multFV0A () > -1 .0f ) {
349349 multFV0A = hVtxZFV0A->Interpolate (0.0 ) * collision.multFV0A () / hVtxZFV0A->Interpolate (collision.multPVz ());
350350 }
You can’t perform that action at this time.
0 commit comments