Skip to content

Commit 5d672d2

Browse files
authored
[Common] Remove accidentally merged verbose output, minor fix (AliceO2Group#9552)
1 parent f93b08a commit 5d672d2

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

Common/TableProducer/centralityTable.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ struct CentralityTable {
573573
getccdb(FT0CInfo, ccdbConfig.genName);
574574
break;
575575
case kCentFT0CVariant1s:
576-
getccdb(FT0CInfo, ccdbConfig.genName);
576+
getccdb(FT0CVariant1Info, ccdbConfig.genName);
577577
break;
578578
case kCentFDDMs:
579579
getccdb(FDDMInfo, ccdbConfig.genName);

Common/TableProducer/multiplicityTable.cxx

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -162,18 +162,6 @@ struct MultiplicityTable {
162162
LOGF(fatal, "Cannot enable processRun2 and processRun3 at the same time. Please choose one.");
163163
}
164164

165-
// exploratory
166-
auto& workflows = context.services().get<o2::framework::RunningWorkflowInfo const>();
167-
for (auto const& device : workflows.devices) {
168-
for (auto const& input : device.inputs) {
169-
// input.print();
170-
TString devNam = device.name.c_str();
171-
TString inBin = input.matcher.binding.c_str();
172-
// TString subSpec = input.matcher.subspec.c_str();
173-
LOGF(info, Form("device %s input binding %s subspec", devNam.Data(), inBin.Data()));
174-
}
175-
}
176-
177165
bool tEnabled[nTables] = {false};
178166
for (int i = 0; i < nTables; i++) {
179167
int f = enabledTables->get(tableNames[i].c_str(), "Enable");

0 commit comments

Comments
 (0)