Skip to content

Commit

Permalink
Please consider the following formatting changes to #8205 (#8214)
Browse files Browse the repository at this point in the history
  • Loading branch information
alibuild authored Oct 29, 2024
1 parent 8afa2a2 commit aeb0704
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Common/Tasks/centralityStudy.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,6 @@ struct centralityStudy {
}
histos.fill(HIST("hCollisionSelection"), 14 /* Not ITS ROF pileup (strict) */);


// if we got here, we also finally fill the FT0C histogram, please
histos.fill(HIST("hNPVContributors"), collision.multPVTotalContributors());
histos.fill(HIST("hFT0C_Collisions"), collision.multFT0C());
Expand Down Expand Up @@ -267,10 +266,10 @@ struct centralityStudy {
if (selectFV0OrA && !multbc.multBCFV0OrA())
return;
histos.fill(HIST("hBCSelection"), 3); // FV0OrA
if(vertexZwithT0<100.0f){
if (vertexZwithT0 < 100.0f) {
if (!multbc.multBCFT0PosZValid())
return;
if (TMath::Abs(multbc.multBCFT0PosZ())>vertexZwithT0)
if (TMath::Abs(multbc.multBCFT0PosZ()) > vertexZwithT0)
return;
}
histos.fill(HIST("hBCSelection"), 4); // FV0OrA
Expand Down

0 comments on commit aeb0704

Please sign in to comment.