Skip to content

Commit 305b667

Browse files
authored
[Common] Use namespace for MetadataHelper (#11883)
1 parent e5d9a5c commit 305b667

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

Common/TableProducer/PID/pidITS.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ using namespace o2::framework;
4040
using namespace o2::framework::expressions;
4141
using namespace o2::track;
4242

43-
MetadataHelper metadataInfo;
43+
o2::common::core::MetadataHelper metadataInfo;
4444

4545
static constexpr int nCases = 2;
4646
static constexpr int nParameters = 12;

Common/TableProducer/PID/pidTOFMerge.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ using namespace o2::pid;
4545
using namespace o2::framework::expressions;
4646
using namespace o2::track;
4747

48-
MetadataHelper metadataInfo;
48+
o2::common::core::MetadataHelper metadataInfo;
4949

5050
// Input data types
5151
using Run3Trks = o2::soa::Join<aod::TracksIU, aod::TracksExtra>;

Common/TableProducer/PID/pidTPC.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ using namespace o2::framework::expressions;
5555
using namespace o2::track;
5656
using namespace o2::ml;
5757

58-
MetadataHelper metadataInfo; // Metadata helper
58+
o2::common::core::MetadataHelper metadataInfo; // Metadata helper
5959

6060
void customize(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
6161
{

Common/TableProducer/centralityTable.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
using namespace o2;
3939
using namespace o2::framework;
4040

41-
MetadataHelper metadataInfo; // Metadata helper
41+
o2::common::core::MetadataHelper metadataInfo; // Metadata helper
4242

4343
static constexpr int kCentRun2V0Ms = 0;
4444
static constexpr int kCentRun2V0As = 1;

Common/TableProducer/eventSelection.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ using namespace o2;
4747
using namespace o2::framework;
4848
using namespace o2::aod::evsel;
4949

50-
MetadataHelper metadataInfo; // Metadata helper
50+
o2::common::core::MetadataHelper metadataInfo; // Metadata helper
5151

5252
using BCsWithRun2InfosTimestampsAndMatches = soa::Join<aod::BCs, aod::Run2BCInfos, aod::Timestamps, aod::Run2MatchedToBCSparse>;
5353
using BCsWithRun3Matchings = soa::Join<aod::BCs, aod::Timestamps, aod::Run3MatchedToBCSparse>;

Common/TableProducer/eventSelectionService.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
using namespace o2;
4545
using namespace o2::framework;
4646

47-
MetadataHelper metadataInfo; // Metadata helper
47+
o2::common::core::MetadataHelper metadataInfo; // Metadata helper
4848

4949
using BCsWithRun2InfosAndMatches = soa::Join<aod::BCs, aod::Run2BCInfos, aod::Run2MatchedToBCSparse>;
5050
using BCsWithRun3Matchings = soa::Join<aod::BCs, aod::Run3MatchedToBCSparse>;

Common/TableProducer/multCentTable.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ using namespace o2;
4646
using namespace o2::framework;
4747
// using namespace o2::framework::expressions;
4848

49-
MetadataHelper metadataInfo; // Metadata helper
49+
o2::common::core::MetadataHelper metadataInfo; // Metadata helper
5050

5151
struct MultCentTable {
5252
o2::common::multiplicity::standardConfigurables opts;

Common/TableProducer/multiplicityTable.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ using namespace o2;
4040
using namespace o2::framework;
4141
using namespace o2::framework::expressions;
4242

43-
MetadataHelper metadataInfo; // Metadata helper
43+
o2::common::core::MetadataHelper metadataInfo; // Metadata helper
4444

4545
static constexpr int kFV0Mults = 0;
4646
static constexpr int kFT0Mults = 1;

Common/TableProducer/timestamp.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ using namespace o2::framework;
2929
using namespace o2::header;
3030
using namespace o2;
3131

32-
MetadataHelper metadataInfo; // Metadata helper
32+
o2::common::core::MetadataHelper metadataInfo; // Metadata helper
3333

3434
struct TimestampTask {
3535
Produces<aod::Timestamps> timestampTable; /// Table with SOR timestamps produced by the task

Common/TableProducer/timestampTester.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ using namespace o2::framework;
3333
using namespace o2::header;
3434
using namespace o2;
3535

36-
MetadataHelper metadataInfo; // Metadata helper
36+
o2::common::core::MetadataHelper metadataInfo; // Metadata helper
3737

3838
struct TimestampTask {
3939
Produces<aod::Timestamps> timestampTable; /// Table with SOR timestamps produced by the task

0 commit comments

Comments
 (0)