Skip to content

Commit 38a9230

Browse files
committed
FIT: changed default value of disable-dead-channel-map option for FV0 digitizer to false
1 parent 8e96f8a commit 38a9230

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Steer/DigitizerWorkflow/src/FV0DigitizerSpec.cxx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class FV0DPLDigitizerTask : public o2::base::BaseDPLDigitizer
5454
LOG(debug) << "FV0DPLDigitizerTask:init";
5555
mDigitizer.init();
5656
mDisableQED = ic.options().get<bool>("disable-qed"); //TODO: QED implementation to be tested
57-
mUseDeadChannelMap = ic.options().get<bool>("disable-dead-channel-map");
57+
mUseDeadChannelMap = !ic.options().get<bool>("disable-dead-channel-map");
5858
mUpdateDeadChannelMap = mUseDeadChannelMap;
5959
}
6060

@@ -182,15 +182,15 @@ o2::framework::DataProcessorSpec getFV0DigitizerSpec(int channel, bool mctruth)
182182

183183
return DataProcessorSpec{
184184
"FV0Digitizer",
185-
Inputs{InputSpec{"collisioncontext", "SIM", "COLLISIONCONTEXT", static_cast<SubSpecificationType>(channel), Lifetime::Timeframe}},
185+
Inputs{InputSpec{"collisioncontext", "SIM", "COLLISIONCONTEXT", static_cast<SubSpecificationType>(channel), Lifetime::Timeframe}},
186186

187-
outputs,
187+
outputs,
188188

189-
AlgorithmSpec{adaptFromTask<FV0DPLDigitizerTask>()},
190-
Options{{"pileup", VariantType::Int, 1, {"whether to run in continuous time mode"}},
191-
{"disable-qed", o2::framework::VariantType::Bool, false, {"disable QED handling"}}},
192-
{"disable-dead-channel-map", o2::framework::VariantType::Bool, true, {"Don't mask dead channels"}}};
193-
//Options{{"pileup", VariantType::Int, 1, {"whether to run in continuous time mode"}}}};
189+
AlgorithmSpec{adaptFromTask<FV0DPLDigitizerTask>()},
190+
Options{{"pileup", VariantType::Int, 1, {"whether to run in continuous time mode"}},
191+
{"disable-qed", o2::framework::VariantType::Bool, false, {"disable QED handling"}},
192+
{"disable-dead-channel-map", o2::framework::VariantType::Bool, false, {"Don't mask dead channels"}}};
193+
// Options{{"pileup", VariantType::Int, 1, {"whether to run in continuous time mode"}}}};
194194
}
195195

196196
} // end namespace fv0

0 commit comments

Comments
 (0)