Skip to content

Commit 352721d

Browse files
committed
Please consider the following formatting changes
1 parent dbb1785 commit 352721d

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

PWGHF/HFC/TableProducer/correlatorFlowCharmHadronsReduced.cxx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ struct HfCorrelatorFlowCharmHadronsReduced {
145145
if (!fillSparses && !fillTables) {
146146
LOGP(fatal, "At least one of fillSparses or fillTables must be true!");
147147
}
148-
if ( (binsPtTrig.value.size() != (bdtScore0PtMaxs.value.size() + 1) || binsPtTrig.value.size() != (bdtScore1PtMins.value.size() + 1))) {
148+
if ((binsPtTrig.value.size() != (bdtScore0PtMaxs.value.size() + 1) || binsPtTrig.value.size() != (bdtScore1PtMins.value.size() + 1))) {
149149
LOGP(fatal, "The size of bdtScore0PtMaxs and bdtScore1PtMins must be the one of binsPtTrig minus one!");
150150
}
151151

@@ -238,7 +238,7 @@ struct HfCorrelatorFlowCharmHadronsReduced {
238238
/// \param ptTrig is the pT of the charm candidate
239239
template <typename TCand>
240240
bool isSelBdtScoreCut(TCand const& cand,
241-
double ptTrig)
241+
double ptTrig)
242242
{
243243
for (size_t iPt = 0; iPt < binsPtTrig.value.size() - 1; iPt++) {
244244
if (ptTrig >= binsPtTrig.value[iPt] && ptTrig < binsPtTrig.value[iPt + 1]) {
@@ -500,7 +500,7 @@ struct HfCorrelatorFlowCharmHadronsReduced {
500500
PROCESS_SWITCH(HfCorrelatorFlowCharmHadronsReduced, processMixedEventHadHadWMultMix, "Process Mixed Event for Had-Had with multiplicity pools", false);
501501

502502
void processCharmTriggers(aod::HfcRedTrigCharms const& trigCands,
503-
aod::HfcRedCorrColls const&)
503+
aod::HfcRedCorrColls const&)
504504
{
505505
for (const auto& trigCand : trigCands) {
506506
auto collision = trigCand.template hfcRedCorrColl_as<o2::aod::HfcRedCorrColls>();
@@ -514,7 +514,6 @@ struct HfCorrelatorFlowCharmHadronsReduced {
514514
}
515515
}
516516
PROCESS_SWITCH(HfCorrelatorFlowCharmHadronsReduced, processCharmTriggers, "Process charm trigger info", false);
517-
518517
};
519518

520519
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)

0 commit comments

Comments
 (0)