Skip to content

Commit 55e806e

Browse files
Merge pull request #48 from alibuild/alibot-cleanup-13334
Please consider the following formatting changes to #13334
2 parents 6b708c6 + b0e8a13 commit 55e806e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

PWGHF/HFC/TableProducer/correlatorFlowCharmHadronsReduced.cxx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ struct HfCorrelatorFlowCharmHadronsReduced {
152152
if (!fillSparses && !fillTables) {
153153
LOGP(fatal, "At least one of fillSparses or fillTables must be true!");
154154
}
155-
if ( (binsPtTrig.value.size() != (bdtScore0PtMaxs.value.size() + 1) || binsPtTrig.value.size() != (bdtScore1PtMins.value.size() + 1))) {
155+
if ((binsPtTrig.value.size() != (bdtScore0PtMaxs.value.size() + 1) || binsPtTrig.value.size() != (bdtScore1PtMins.value.size() + 1))) {
156156
LOGP(fatal, "The size of bdtScore0PtMaxs and bdtScore1PtMins must be the one of binsPtTrig minus one!");
157157
}
158158

@@ -245,7 +245,7 @@ struct HfCorrelatorFlowCharmHadronsReduced {
245245
/// \param ptTrig is the pT of the charm candidate
246246
template <typename TCand>
247247
bool isSelBdtScoreCut(TCand const& cand,
248-
double ptTrig)
248+
double ptTrig)
249249
{
250250
for (size_t iPt = 0; iPt < binsPtTrig.value.size() - 1; iPt++) {
251251
if (ptTrig >= binsPtTrig.value[iPt] && ptTrig < binsPtTrig.value[iPt + 1]) {
@@ -507,7 +507,7 @@ struct HfCorrelatorFlowCharmHadronsReduced {
507507
PROCESS_SWITCH(HfCorrelatorFlowCharmHadronsReduced, processMixedEventHadHadWMultMix, "Process Mixed Event for Had-Had with multiplicity pools", false);
508508

509509
void processCharmTriggers(aod::HfcRedTrigCharms const& trigCands,
510-
aod::HfcRedCorrColls const&)
510+
aod::HfcRedCorrColls const&)
511511
{
512512
for (const auto& trigCand : trigCands) {
513513
auto collision = trigCand.template hfcRedCorrColl_as<o2::aod::HfcRedCorrColls>();
@@ -521,7 +521,6 @@ struct HfCorrelatorFlowCharmHadronsReduced {
521521
}
522522
}
523523
PROCESS_SWITCH(HfCorrelatorFlowCharmHadronsReduced, processCharmTriggers, "Process charm trigger info", false);
524-
525524
};
526525

527526
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)

0 commit comments

Comments
 (0)