Skip to content

Commit

Permalink
Configuration lowercase namespace (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
awegrzyn authored Apr 23, 2018
1 parent 972ba34 commit 15c4ad4
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Framework/include/QualityControl/Checker.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class Checker : public FairMQDevice
void loadLibrary(const std::string libraryName);
CheckInterface* instantiateCheck(std::string checkName, std::string className);
static void CustomCleanupTMessage(void *data, void *object);
void populateConfig( std::unique_ptr<AliceO2::Configuration::ConfigurationInterface>& config, std::string checkerName);
void populateConfig( std::unique_ptr<o2::configuration::ConfigurationInterface>& config, std::string checkerName);

o2::quality_control::core::QcInfoLogger &mLogger;
o2::quality_control::repository::DatabaseInterface *mDatabase;
Expand Down
2 changes: 1 addition & 1 deletion Framework/include/QualityControl/TaskDevice.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class TaskDevice : public FairMQDevice
private:
std::string mTaskName;
TaskConfig mTaskConfig;
std::unique_ptr<AliceO2::Configuration::ConfigurationInterface> mConfigFile;
std::unique_ptr<o2::configuration::ConfigurationInterface> mConfigFile;
std::unique_ptr<o2::monitoring::Monitoring> mCollector;
std::unique_ptr<AliceO2::DataSampling::SamplerInterface> mSampler;
o2::quality_control::core::TaskInterface *mTask;
Expand Down
2 changes: 1 addition & 1 deletion Framework/src/AlfaReceiverForTests.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ bool AlfaReceiverForTests::HandleData(FairMQMessagePtr &msg, int /*index*/)
}
}
}
}
}
2 changes: 1 addition & 1 deletion Framework/src/CcdbDatabase.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -327,4 +327,4 @@ std::string CcdbDatabase::getObjectPath(std::string taskName, std::string object

}
}
}
}
4 changes: 2 additions & 2 deletions Framework/src/Checker.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include "QualityControl/DatabaseFactory.h"

using namespace AliceO2::Common;
using namespace AliceO2::Configuration;
using namespace o2::configuration;

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

namespace o2 {
Expand Down
2 changes: 1 addition & 1 deletion Framework/src/SpyMainFrame.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

using namespace std;
using namespace o2::quality_control::repository;
using namespace AliceO2::Configuration;
using namespace o2::configuration;

namespace o2 {
namespace quality_control {
Expand Down
2 changes: 1 addition & 1 deletion Framework/src/TaskDevice.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
namespace bpo = boost::program_options;
using namespace std;
using namespace std::chrono;
using namespace AliceO2::Configuration;
using namespace o2::configuration;
using namespace o2::monitoring;

/*
Expand Down
2 changes: 1 addition & 1 deletion Framework/src/qcCheckerLauncher.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

using namespace std;
using namespace o2::quality_control::core;
using namespace AliceO2::Configuration;
using namespace o2::configuration;
using namespace o2::quality_control::checker;
namespace po = boost::program_options;

Expand Down
2 changes: 1 addition & 1 deletion Framework/src/runInformationService.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ FairMQDevicePtr getDevice(const FairMQProgOptions & /*config*/)
InformationService *is = new InformationService();

return is;
}
}
2 changes: 1 addition & 1 deletion Framework/src/runInformationServiceDump.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ void addCustomOptions(bpo::options_description &options)
FairMQDevicePtr getDevice(const FairMQProgOptions & /*config*/)
{
return new InformationServiceDump();
}
}
2 changes: 1 addition & 1 deletion Modules/Common/src/MeanIsAbove.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
ClassImp(o2::quality_control_modules::common::MeanIsAbove)

using namespace std;
using namespace AliceO2::Configuration;
using namespace o2::configuration;

namespace o2 {
namespace quality_control_modules {
Expand Down
2 changes: 1 addition & 1 deletion Modules/Example/include/Example/BenchmarkTask.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class BenchmarkTask: public TaskInterface
private:

std::vector<TH1F*> mHistos;
std::unique_ptr<AliceO2::Configuration::ConfigurationInterface> mConfigFile;
std::unique_ptr<o2::configuration::ConfigurationInterface> mConfigFile;
size_t mNumberHistos;
size_t mNumberChecks;
std::string mTypeOfChecks;
Expand Down
2 changes: 1 addition & 1 deletion Modules/Example/src/BenchmarkTask.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include <thread>

using namespace std;
using namespace AliceO2::Configuration;
using namespace o2::configuration;

namespace o2 {
namespace quality_control_modules {
Expand Down

0 comments on commit 15c4ad4

Please sign in to comment.