Skip to content

Commit

Permalink
again with IL
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Tichák committed Oct 10, 2024
1 parent e6d01ac commit d904a4d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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
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 d904a4d

Please sign in to comment.