@@ -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