Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions Detectors/ITSMFT/MFT/calibration/src/NoiseCalibratorSpec.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,12 @@ void NoiseCalibratorSpec::sendOutputCcdbDcs(DataAllocator& output)

LOG(info) << "CCDB-DCS mode";

static bool done = false;
if (done) {
return;
}
done = true;

mCalibrator->finalize();

long tstart = mStart;
Expand Down Expand Up @@ -170,6 +176,12 @@ void NoiseCalibratorSpec::sendOutputCcdb(DataAllocator& output)

LOG(info) << "CCDB mode";

static bool done = false;
if (done) {
return;
}
done = true;

mCalibrator->finalize();

long tstart = mStart;
Expand Down Expand Up @@ -220,6 +232,12 @@ void NoiseCalibratorSpec::sendOutputDcs(DataAllocator& output)

LOG(info) << "DCS mode";

static bool done = false;
if (done) {
return;
}
done = true;

mCalibrator->finalize();

long tstart = mStart;
Expand Down