Skip to content

Commit

Permalink
test without IL
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Tichák committed Oct 10, 2024
1 parent c864bae commit e6d01ac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Framework/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ target_link_libraries(O2QualityControlTypes
PUBLIC
AliceO2::BookkeepingApi
AliceO2::Common
AliceO2::InfoLogger
# AliceO2::InfoLogger
O2::DataFormatsQualityControl
ROOT::Hist

Expand Down
2 changes: 1 addition & 1 deletion Framework/include/QualityControl/MonitorObject.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class MonitorObject : public TObject
MonitorObject();
MonitorObject(TObject* object, const std::string& taskName, const std::string& taskClass, const std::string& detectorName, int runNumber = 0, const std::string& periodName = "", const std::string& passName = "", const std::string& provenance = "qc");
/// Destructor
~MonitorObject() override;
virtual ~MonitorObject() override;

// /// Copy constructor
MonitorObject(const MonitorObject& other);
Expand Down
8 changes: 4 additions & 4 deletions Framework/src/MonitorObject.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include "QualityControl/MonitorObject.h"
#include <TObject.h>
#include "QualityControl/RepoPathUtils.h"
#include "QualityControl/QcInfoLogger.h"
// #include "QualityControl/QcInfoLogger.h"

#include <iostream>

Expand Down Expand Up @@ -90,14 +90,14 @@ void MonitorObject::Draw(Option_t* option)
if (mObject) {
mObject->Draw(option);
} else {
ILOG(Error, Devel) << "MonitorObject::Draw() : You are trying to draw MonitorObject with no internal TObject" << ENDM;
// ILOG(Error, Devel) << "MonitorObject::Draw() : You are trying to draw MonitorObject with no internal TObject" << ENDM;
}
}

TObject* MonitorObject::DrawClone(Option_t* option) const
{
if (!mObject) {
ILOG(Error, Devel) << "MonitorObject::DrawClone() : You are trying to draw MonitorObject with no internal TObject" << ENDM;
// ILOG(Error, Devel) << "MonitorObject::DrawClone() : You are trying to draw MonitorObject with no internal TObject" << ENDM;
return nullptr;
}

Expand All @@ -115,7 +115,7 @@ const std::string MonitorObject::getName() const
const char* MonitorObject::GetName() const
{
if (!mObject) {
ILOG(Error, Ops) << "MonitorObject::getName() : No object in this MonitorObject, returning empty string" << ENDM;
// ILOG(Error, Ops) << "MonitorObject::getName() : No object in this MonitorObject, returning empty string" << ENDM;
return "";
}
return mObject->GetName();
Expand Down

0 comments on commit e6d01ac

Please sign in to comment.