Skip to content

Commit 15c4ad4

Browse files
authored
Configuration lowercase namespace (#9)
1 parent 972ba34 commit 15c4ad4

File tree

13 files changed

+14
-14
lines changed

13 files changed

+14
-14
lines changed

Framework/include/QualityControl/Checker.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class Checker : public FairMQDevice
8989
void loadLibrary(const std::string libraryName);
9090
CheckInterface* instantiateCheck(std::string checkName, std::string className);
9191
static void CustomCleanupTMessage(void *data, void *object);
92-
void populateConfig( std::unique_ptr<AliceO2::Configuration::ConfigurationInterface>& config, std::string checkerName);
92+
void populateConfig( std::unique_ptr<o2::configuration::ConfigurationInterface>& config, std::string checkerName);
9393

9494
o2::quality_control::core::QcInfoLogger &mLogger;
9595
o2::quality_control::repository::DatabaseInterface *mDatabase;

Framework/include/QualityControl/TaskDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class TaskDevice : public FairMQDevice
6161
private:
6262
std::string mTaskName;
6363
TaskConfig mTaskConfig;
64-
std::unique_ptr<AliceO2::Configuration::ConfigurationInterface> mConfigFile;
64+
std::unique_ptr<o2::configuration::ConfigurationInterface> mConfigFile;
6565
std::unique_ptr<o2::monitoring::Monitoring> mCollector;
6666
std::unique_ptr<AliceO2::DataSampling::SamplerInterface> mSampler;
6767
o2::quality_control::core::TaskInterface *mTask;

Framework/src/AlfaReceiverForTests.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ bool AlfaReceiverForTests::HandleData(FairMQMessagePtr &msg, int /*index*/)
4747
}
4848
}
4949
}
50-
}
50+
}

Framework/src/CcdbDatabase.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,4 +327,4 @@ std::string CcdbDatabase::getObjectPath(std::string taskName, std::string object
327327

328328
}
329329
}
330-
}
330+
}

Framework/src/Checker.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include "QualityControl/DatabaseFactory.h"
1717

1818
using namespace AliceO2::Common;
19-
using namespace AliceO2::Configuration;
19+
using namespace o2::configuration;
2020

2121
/**
2222
* \brief Handy class to deserialize messages and make sure buffer is not deleted along with the message.
@@ -36,7 +36,7 @@ class HistoMessage : public TMessage
3636
using namespace std;
3737
using namespace AliceO2::InfoLogger;
3838
using namespace std::chrono;
39-
using namespace AliceO2::Configuration;
39+
using namespace o2::configuration;
4040
using namespace o2::monitoring;
4141

4242
namespace o2 {

Framework/src/SpyMainFrame.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
using namespace std;
2020
using namespace o2::quality_control::repository;
21-
using namespace AliceO2::Configuration;
21+
using namespace o2::configuration;
2222

2323
namespace o2 {
2424
namespace quality_control {

Framework/src/TaskDevice.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
namespace bpo = boost::program_options;
1919
using namespace std;
2020
using namespace std::chrono;
21-
using namespace AliceO2::Configuration;
21+
using namespace o2::configuration;
2222
using namespace o2::monitoring;
2323

2424
/*

Framework/src/qcCheckerLauncher.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
using namespace std;
2424
using namespace o2::quality_control::core;
25-
using namespace AliceO2::Configuration;
25+
using namespace o2::configuration;
2626
using namespace o2::quality_control::checker;
2727
namespace po = boost::program_options;
2828

Framework/src/runInformationService.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ FairMQDevicePtr getDevice(const FairMQProgOptions & /*config*/)
3232
InformationService *is = new InformationService();
3333

3434
return is;
35-
}
35+
}

Framework/src/runInformationServiceDump.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ void addCustomOptions(bpo::options_description &options)
2929
FairMQDevicePtr getDevice(const FairMQProgOptions & /*config*/)
3030
{
3131
return new InformationServiceDump();
32-
}
32+
}

0 commit comments

Comments
 (0)