Skip to content

Commit a146a91

Browse files
committed
AliceO2 -> o2 namespace change
fixes issue AliceO2Group#239
1 parent 4bbaa50 commit a146a91

427 files changed

Lines changed: 1252 additions & 1252 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CCDB/example/fill_local_ocdb.C

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
void fill_local_ocdb()
22
{
3-
AliceO2::CDB::Manager* cdb = AliceO2::CDB::Manager::Instance();
3+
o2::CDB::Manager* cdb = o2::CDB::Manager::Instance();
44
cdb->setDefaultStorage("local://O2CDB");
55
TH1F* h = 0;
66
for (int run = 2000; run < 2100; run++) {
77
cdb->setRun(run);
88
h = new TH1F(Form("histo for %d run", run), "gauss", 100, -5, 5);
99
h->FillRandom("gaus", 1000);
10-
AliceO2::CDB::ConditionId* id = new AliceO2::CDB::ConditionId("DET/Calib/Histo", run, run, 1, 0);
11-
AliceO2::CDB::ConditionMetaData* md = new AliceO2::CDB::ConditionMetaData();
10+
o2::CDB::ConditionId* id = new o2::CDB::ConditionId("DET/Calib/Histo", run, run, 1, 0);
11+
o2::CDB::ConditionMetaData* md = new o2::CDB::ConditionMetaData();
1212
cdb->putObject(h, *id, md);
1313
h = 0;
1414
}

CCDB/include/CCDB/Backend.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include <google/protobuf/stubs/common.h>
1515
#include "request.pb.h"
1616

17-
namespace AliceO2 {
17+
namespace o2 {
1818
namespace CDB {
1919

2020
class Backend {

CCDB/include/CCDB/BackendOCDB.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <iostream>
1111
#include <memory>
1212

13-
namespace AliceO2 {
13+
namespace o2 {
1414
namespace CDB {
1515

1616
class BackendOCDB : public Backend {

CCDB/include/CCDB/BackendRiak.h

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

88
#include "CCDB/Backend.h"
99

10-
namespace AliceO2 {
10+
namespace o2 {
1111
namespace CDB {
1212

1313
class BackendRiak : public Backend {

CCDB/include/CCDB/Condition.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
#include "TObject.h" // for TObject
1212
#include "TString.h" // for TString
1313

14-
namespace AliceO2 { namespace CDB { class IdRunRange; }}
14+
namespace o2 { namespace CDB { class IdRunRange; }}
1515

1616

17-
namespace AliceO2 {
17+
namespace o2 {
1818
namespace CDB {
1919

2020
/// Class containing the condition (a ROOT TObject) and the metadata identifying it (ConditionId)

CCDB/include/CCDB/ConditionId.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include "Rtypes.h" // for Int_t, Bool_t, ConditionId::Class, ClassDef, etc
1010
#include "TString.h" // for TString
1111

12-
namespace AliceO2 {
12+
namespace o2 {
1313
namespace CDB {
1414

1515
class ConditionId : public TObject

CCDB/include/CCDB/ConditionMetaData.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include "Rtypes.h" // for UInt_t, ConditionMetaData::Class, Bool_t, etc
77
#include "TString.h" // for TString
88

9-
namespace AliceO2 {
9+
namespace o2 {
1010
namespace CDB {
1111
// Set of data describing the object //
1212
// but not used to identify the object //

CCDB/include/CCDB/ConditionsMQClient.h

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

1313
#include <FairMQDevice.h>
1414

15-
namespace AliceO2 {
15+
namespace o2 {
1616
namespace CDB {
1717

1818
class ConditionsMQClient : public FairMQDevice {

CCDB/include/CCDB/ConditionsMQServer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#include "CCDB/Manager.h"
1414
#include "ParameterMQServer.h"
1515

16-
namespace AliceO2 {
16+
namespace o2 {
1717
namespace CDB {
1818

1919
class ConditionsMQServer : public ParameterMQServer {

CCDB/include/CCDB/FileStorage.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ class TFile; // lines 8-8
1010
class TList;
1111

1212
class TObject;
13-
namespace AliceO2 { namespace CDB { class Condition; }}
14-
namespace AliceO2 { namespace CDB { class ConditionId; }}
15-
namespace AliceO2 { namespace CDB { class IdRunRange; }}
13+
namespace o2 { namespace CDB { class Condition; }}
14+
namespace o2 { namespace CDB { class ConditionId; }}
15+
namespace o2 { namespace CDB { class IdRunRange; }}
1616

17-
namespace AliceO2 {
17+
namespace o2 {
1818
namespace CDB {
1919

2020
class FileStorage : public Storage

0 commit comments

Comments
 (0)