From c30bf695dbe74de9344326251bfe63c121ebf9ce Mon Sep 17 00:00:00 2001 From: Deependra Sharma Date: Mon, 16 Oct 2023 16:12:28 +0530 Subject: [PATCH] clang formatting --- Modules/TRD/include/TRD/LinkDef.h | 2 +- Modules/TRD/include/TRD/TrackletCountCheck.h | 2 +- Modules/TRD/src/TrackletCountCheck.cxx | 16 ++++++++-------- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Modules/TRD/include/TRD/LinkDef.h b/Modules/TRD/include/TRD/LinkDef.h index d0a0a3c569..a830a33ab7 100644 --- a/Modules/TRD/include/TRD/LinkDef.h +++ b/Modules/TRD/include/TRD/LinkDef.h @@ -19,5 +19,5 @@ #pragma link C++ class o2::quality_control_modules::trd::TRDReductor + ; #pragma link C++ class o2::quality_control_modules::trd::TrackletPerTriggerCheck + ; #pragma link C++ class o2::quality_control_modules::trd::TrackletsPerTimeFrameCheck + ; -#pragma link C++ class o2::quality_control_modules::trd::TrackletCountCheck+; +#pragma link C++ class o2::quality_control_modules::trd::TrackletCountCheck + ; #endif diff --git a/Modules/TRD/include/TRD/TrackletCountCheck.h b/Modules/TRD/include/TRD/TrackletCountCheck.h index d66ca6e955..716bb275e5 100644 --- a/Modules/TRD/include/TRD/TrackletCountCheck.h +++ b/Modules/TRD/include/TRD/TrackletCountCheck.h @@ -37,7 +37,7 @@ class TrackletCountCheck : public o2::quality_control::checker::CheckInterface Quality check(std::map>* moMap) override; void beautify(std::shared_ptr mo, Quality checkResult = Quality::Null) override; std::string getAcceptedType() override; - float mThresholdMeanLowPerTrigger,mThresholdMeanHighPerTrigger, mThresholdMeanLowPerTimeFrame,mThresholdMeanHighPerTimeFrame; + float mThresholdMeanLowPerTrigger, mThresholdMeanHighPerTrigger, mThresholdMeanLowPerTimeFrame, mThresholdMeanHighPerTimeFrame; int mStatThresholdPerTrigger; Quality mResultPertrigger; Quality mResultPerTimeFrame; diff --git a/Modules/TRD/src/TrackletCountCheck.cxx b/Modules/TRD/src/TrackletCountCheck.cxx index 56005388bf..b34bdf674f 100644 --- a/Modules/TRD/src/TrackletCountCheck.cxx +++ b/Modules/TRD/src/TrackletCountCheck.cxx @@ -32,7 +32,7 @@ using namespace o2::quality_control_modules::common; namespace o2::quality_control_modules::trd { -void TrackletCountCheck::configure() +void TrackletCountCheck::configure() { ILOG(Debug, Devel) << "initializing TrackletCountCheck" << ENDM; @@ -132,15 +132,15 @@ Quality TrackletCountCheck::check(std::map mo, Quality che } h1->SetLineColor(kBlack); } - if(mo->getName() == "trackletspertimeframe"){ + if (mo->getName() == "trackletspertimeframe") { auto* h2 = dynamic_cast(mo->getObject()); if (h2 == nullptr) { // ILOG(Debug, Support) << "Requested Histogram type does not match with the Histogram in source" << ENDM;