Skip to content

Commit d24566a

Browse files
author
Maurice Coquet
committed
Fixing calls of ccdb objects construction
1 parent 9b8fb23 commit d24566a

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

Detectors/ITSMFT/MFT/calibration/src/NoiseCalibratorSpec.cxx

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,13 @@ void NoiseCalibratorSpec::run(ProcessingContext& pc)
7878
LOG(info) << "Sending an object to Production-CCDBMerge";
7979
sendOutputCcdbMerge(pc.outputs());
8080
} else if (mOutputType.compare("DCS") == 0) {
81-
LOG(info) << "Sending an object to DCS-CCDB";
82-
sendOutputDcs(pc.outputs());
81+
LOG(info) << "Sending an object to DCS-Merge";
82+
sendOutputDcsMerge(ec.outputs());
8383
} else {
84-
LOG(info) << "Sending an object to Production-CCDB and DCS-CCDB";
85-
sendOutputCcdbDcs(pc.outputs());
86-
LOG(info) << "Sending an object to Production-CCDBMerge";
87-
sendOutputCcdbMerge(pc.outputs());
84+
LOG(info) << "Sending an object to Production-CCDB, Production-CCDB-Merge and DCS-Merge";
85+
sendOutputCcdb(ec.outputs());
86+
sendOutputDcsMerge(ec.outputs());
87+
sendOutputCcdbMerge(ec.outputs());
8888
}
8989
pc.services().get<ControlService>().readyToQuit(mStopMeOnly ? QuitRequest::Me : QuitRequest::All);
9090
}
@@ -102,13 +102,13 @@ void NoiseCalibratorSpec::run(ProcessingContext& pc)
102102
LOG(info) << "Sending an object to Production-CCDBMerge";
103103
sendOutputCcdbMerge(pc.outputs());
104104
} else if (mOutputType.compare("DCS") == 0) {
105-
LOG(info) << "Sending an object to DCS-CCDB";
106-
sendOutputDcs(pc.outputs());
105+
LOG(info) << "Sending an object to DCS-Merge";
106+
sendOutputDcsMerge(ec.outputs());
107107
} else {
108-
LOG(info) << "Sending an object to Production-CCDB and DCS-CCDB";
109-
sendOutputCcdbDcs(pc.outputs());
110-
LOG(info) << "Sending an object to Production-CCDBMerge";
111-
sendOutputCcdbMerge(pc.outputs());
108+
LOG(info) << "Sending an object to Production-CCDB, Production-CCDB-Merge and DCS-Merge";
109+
sendOutputCcdb(ec.outputs());
110+
sendOutputDcsMerge(ec.outputs());
111+
sendOutputCcdbMerge(ec.outputs());
112112
}
113113
pc.services().get<ControlService>().readyToQuit(mStopMeOnly ? QuitRequest::Me : QuitRequest::All);
114114
}
@@ -385,7 +385,7 @@ void NoiseCalibratorSpec::sendOutputDcs(DataAllocator& output)
385385
void NoiseCalibratorSpec::sendOutputDcsMerge(DataAllocator& output)
386386
{
387387

388-
LOG(info) << "DCS mode";
388+
LOG(info) << "DCS-Merge mode";
389389

390390
static bool done = false;
391391
if (done) {

0 commit comments

Comments
 (0)