Skip to content

Commit

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

if (selectUPCcollisions && collision.flags()<1) { // if zero then NOT upc, otherwise UPC
if (selectUPCcollisions && collision.flags() < 1) { // if zero then NOT upc, otherwise UPC
return;
}
histos.fill(HIST("hCollisionSelection"), 13 /* is UPC event */);
Expand Down Expand Up @@ -265,12 +265,11 @@ struct centralityStudy {
}
}

if(multbc.has_ft0Mult()){
auto multco = multbc.ft0Mult_as<soa::Join<aod::Mults, aod::MultsExtra, aod::MultSelections, aod::CentFT0Cs, aod::MultsGlobal>>();
if (multbc.has_ft0Mult()) {
auto multco = multbc.ft0Mult_as<soa::Join<aod::Mults, aod::MultsExtra, aod::MultSelections, aod::CentFT0Cs, aod::MultsGlobal>>();
if (multbc.multBCFT0PosZValid()) {
histos.fill(HIST("hVertexZ_BCvsCO"), multco.multPVz(), multbc.multBCFT0PosZ());
}

}
}

Expand Down

0 comments on commit 755433d

Please sign in to comment.