Skip to content

Commit 6516a47

Browse files
committed
clang format
1 parent 5707bee commit 6516a47

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

PWGDQ/Core/CutsLibrary.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7284,7 +7284,7 @@ o2::aod::dqmlcuts::BdtScoreConfig o2::aod::dqmlcuts::GetBdtScoreCutsAndConfigFro
72847284

72857285
return binaryCfg;
72867286

7287-
// MultiClass
7287+
// MultiClass
72887288
} else if (typeStr == "MultiClass") {
72897289
dqmlcuts::MultiClassBdtScoreConfig multiCfg;
72907290
multiCfg.inputFeatures = namesInputFeatures;
@@ -7323,12 +7323,12 @@ int o2::aod::dqmlcuts::getMlBinIndex(double cent, double pt,
73237323
const std::vector<std::pair<double, double>>& binsCent,
73247324
const std::vector<std::pair<double, double>>& binsPt)
73257325
{
7326-
LOG(debug) << "Searching for Ml bin index for cent: " << cent << ", pt: " << pt; //here
7326+
LOG(debug) << "Searching for Ml bin index for cent: " << cent << ", pt: " << pt;
73277327
for (size_t i = 0; i < binsCent.size(); ++i) {
73287328
if (cent >= binsCent[i].first && cent < binsCent[i].second && pt >= binsPt[i].first && pt < binsPt[i].second) {
7329-
LOG(debug) << " - Found at index: " << i; //here
7329+
LOG(debug) << " - Found at index: " << i;
73307330
return static_cast<int>(i);
73317331
}
73327332
}
73337333
return -1; // not found
7334-
}
7334+
}

PWGDQ/Core/CutsLibrary.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@
1515
#ifndef PWGDQ_CORE_CUTSLIBRARY_H_
1616
#define PWGDQ_CORE_CUTSLIBRARY_H_
1717

18-
#include <string>
19-
#include <vector>
20-
#include "PWGDQ/Core/AnalysisCut.h"
2118
#include "PWGDQ/Core/AnalysisCompositeCut.h"
19+
#include "PWGDQ/Core/AnalysisCut.h"
2220
#include "PWGDQ/Core/VarManager.h"
2321

22+
#include <string>
23+
#include <vector>
24+
2425
// ///////////////////////////////////////////////
2526
// These are the Cuts used in the CEFP Task //
2627
// to select tracks in the event selection //

PWGDQ/Tasks/tableReader.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
#include "PWGDQ/Core/AnalysisCompositeCut.h"
1515
#include "PWGDQ/Core/AnalysisCut.h"
1616
#include "PWGDQ/Core/CutsLibrary.h"
17+
#include "PWGDQ/Core/DQMlResponse.h"
1718
#include "PWGDQ/Core/HistogramManager.h"
1819
#include "PWGDQ/Core/HistogramsLibrary.h"
1920
#include "PWGDQ/Core/MixingHandler.h"
2021
#include "PWGDQ/Core/MixingLibrary.h"
2122
#include "PWGDQ/Core/VarManager.h"
2223
#include "PWGDQ/DataModel/ReducedInfoTables.h"
23-
#include "PWGDQ/Core/DQMlResponse.h"
2424

2525
#include "Common/CCDB/EventSelectionParams.h"
2626

PWGDQ/Tasks/tableReader_withAssoc.cxx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
#include "PWGDQ/Core/AnalysisCompositeCut.h"
1616
#include "PWGDQ/Core/AnalysisCut.h"
1717
#include "PWGDQ/Core/CutsLibrary.h"
18+
#include "PWGDQ/Core/DQMlResponse.h"
1819
#include "PWGDQ/Core/HistogramManager.h"
1920
#include "PWGDQ/Core/HistogramsLibrary.h"
2021
#include "PWGDQ/Core/MixingHandler.h"
2122
#include "PWGDQ/Core/MixingLibrary.h"
2223
#include "PWGDQ/Core/VarManager.h"
2324
#include "PWGDQ/DataModel/ReducedInfoTables.h"
24-
#include "PWGDQ/Core/DQMlResponse.h"
2525

2626
#include "Common/CCDB/EventSelectionParams.h"
2727
#include "Common/Core/TableHelper.h"
@@ -1770,7 +1770,6 @@ struct AnalysisSameEventPairing {
17701770
if constexpr ((TTrackFillMap & VarManager::ObjTypes::ReducedTrackBarrelPID) > 0) {
17711771
if (fConfigML.applyBDT) {
17721772
std::vector<float> dqInputFeatures = dqMlResponse.getInputFeatures(t1, t2, VarManager::fgValues);
1773-
LOG(debug) << "Input features size: " << dqInputFeatures.size();
17741773

17751774
if (dqInputFeatures.empty()) {
17761775
LOG(fatal) << "Input features for ML selection are empty! Please check your configuration.";

0 commit comments

Comments
 (0)