Skip to content

Commit 78e9085

Browse files
jokonigshahor02
authored andcommitted
[EMCAL-742] Fix order of arguments in offline calib exporter
- Order of arguments was wrong with respect to https://github.com/AliceO2Group/AliceO2/blob/dev/Detectors/EMCAL/workflow/src/OfflineCalibSpec.cxx#L207 - The subspec could not be defined properly and as such, calibration histograms are empty
1 parent e2316f8 commit 78e9085

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Detectors/EMCAL/workflow/src/emc-offline-calib-workflow.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
4949
auto inputsubspec = cfgc.options().get<uint32_t>("input-subspec");
5050

5151
o2::conf::ConfigurableParam::updateFromString(cfgc.options().get<std::string>("configKeyValues"));
52-
wf.emplace_back(o2::emcal::getEmcalOfflineCalibSpec(makeCellIDTimeEnergy, rejectCalibTrigg, inputsubspec, doApplyGainCalib, doRejectL0Trigger, ctpcfgperrun));
52+
wf.emplace_back(o2::emcal::getEmcalOfflineCalibSpec(makeCellIDTimeEnergy, rejectCalibTrigg, doRejectL0Trigger, inputsubspec, doApplyGainCalib, ctpcfgperrun));
5353
return wf;
5454
}

0 commit comments

Comments
 (0)