Skip to content

Commit bfb6909

Browse files
committed
clang
1 parent 2f70743 commit bfb6909

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Modules/CTP/include/CTP/RawDataQcTask.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class CTPRawDataReaderTask final : public TaskInterface
8686
bool mPerformConsistencyCheck = false;
8787
std::bitset<o2::constants::lhc::LHCMaxBunches> mLHCBCs; /// LHC filling scheme
8888
bool lhcDataFileFound = true;
89-
std::unordered_set<int> mListOfUsedInputs = {1,2,3, 4,5,6,7,8,9,10,13,15,16,17,18,25,26};
89+
std::unordered_set<int> mListOfUsedInputs = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 15, 16, 17, 18, 25, 26 };
9090
};
9191

9292
} // namespace o2::quality_control_modules::ctp

Modules/CTP/src/RawDataQcTask.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ void CTPRawDataReaderTask::initialize(o2::framework::InitContext& /*ctx*/)
8888
mHisInputsNotLHC[i]->SetLineColor(kRed + 1);
8989
mHisInputsNotLHC[i]->SetFillColor(kRed + 1);
9090

91-
if(mListOfUsedInputs.count(i + 1)) {
91+
if (mListOfUsedInputs.count(i + 1)) {
9292
getObjectsManager()->startPublishing(mHisInputs[i]);
9393
getObjectsManager()->startPublishing(mHisInputsYesLHC[i]);
9494
// getObjectsManager()->startPublishing(mHisInputsNotLHC[i]);

0 commit comments

Comments
 (0)