Skip to content

Commit 4e135a0

Browse files
committed
fix comments from vit
1 parent f7af3ba commit 4e135a0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PWGHF/Utils/utilsEvSelHf.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ struct HfEventSelection : o2::framework::ConfigurableGroup {
375375
template <bool useEvSel, o2::hf_centrality::CentralityEstimator centEstimator, typename BCsType, typename Coll>
376376
uint32_t getHfCollisionRejectionMaskWithUpc(const Coll& collision, float& centrality, o2::framework::Service<o2::ccdb::BasicCCDBManager> const& ccdb, o2::framework::HistogramRegistry& registry, const BCsType& bcs)
377377
{
378-
auto rejectionMaskWithUPC = getHfCollisionRejectionMask<true, centEstimator, BCsType>(collision, centrality, ccdb, registry);
378+
auto rejectionMaskWithUpc = getHfCollisionRejectionMask<true, centEstimator, BCsType>(collision, centrality, ccdb, registry);
379379

380380
if (useEvSel) {
381381
SGCutParHolder sgCuts = setSgPreselection();
@@ -384,13 +384,13 @@ struct HfEventSelection : o2::framework::ConfigurableGroup {
384384
auto sgSelectionResult = sgSelector.IsSelected(sgCuts, collision, bcRange, bc);
385385
int upcEventType = sgSelectionResult.value;
386386
if (upcEventType > EventTypeUpc::DoubleGap) {
387-
SETBIT(rejectionMaskWithUPC, EventRejection::UpcEventCut);
387+
SETBIT(rejectionMaskWithUpc, EventRejection::UpcEventCut);
388388
} else {
389389
hUPCollisions->Fill(upcEventType);
390390
}
391391
}
392392

393-
return rejectionMaskWithUPC;
393+
return rejectionMaskWithUpc;
394394
}
395395

396396
/// \brief Fills histograms for monitoring event selections satisfied by the collision.

0 commit comments

Comments
 (0)