21void customize(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
24 std::vector<ConfigParamSpec> options{{
"makeCellIDTimeEnergy", VariantType::Bool,
false, {
"list whether or not to make the cell ID, time, energy THnSparse"}},
25 {
"no-rejectCalibTrigg", VariantType::Bool,
false, {
"if set to true, all events, including calibration triggered events, will be accepted"}},
26 {
"input-subspec", VariantType::UInt32, 0U, {
"Subspecification for input objects"}},
27 {
"applyGainCalib", VariantType::Bool,
false, {
"Apply the gain calibration parameters for the bad channel calibration"}},
28 {
"rejectL0Trigger", VariantType::Bool,
false, {
"Reject all emcal triggers except the minimum bias trigger"}},
29 {
"ctpconfig-run-independent", VariantType::Bool,
false, {
"Use CTP config w/o runNumber tag"}},
30 {
"configKeyValues", VariantType::String,
"", {
"Semicolon separated key=value strings"}}};
31 workflowOptions.insert(workflowOptions.end(), options.begin(), options.end());
ConfigParamRegistry & options() const
o2::framework::DataProcessorSpec getEmcalOfflineCalibSpec(bool makeCellIDTimeEnergy, bool rejectCalibTriggers, bool rejectL0Trigger, uint32_t inputsubspec, bool enableGainCalib, bool ctpcfgperrun)
Creating offline calib spec.