Skip to content

Commit 930407a

Browse files
committed
FIT: Fixed typo in FV0DigitizerSpec.cxx
1 parent 21efa7a commit 930407a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Steer/DigitizerWorkflow/src/FV0DigitizerSpec.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class FV0DPLDigitizerTask : public o2::base::BaseDPLDigitizer
8080
const bool withQED = context->isQEDProvided() && !mDisableQED; //TODO: QED implementation to be tested
8181

8282
if (mUseDeadChannelMap && mUpdateDeadChannelMap) {
83-
auto deadChannelMap = pc.inputs().get<o2::fit::DeadChannelMap>("fv0deadchannelmap");
83+
auto deadChannelMap = pc.inputs().get<o2::fit::DeadChannelMap*>("fv0deadchannelmap");
8484
mDigitizer.setDeadChannelMap(deadChannelMap);
8585
}
8686

@@ -192,6 +192,7 @@ o2::framework::DataProcessorSpec getFV0DigitizerSpec(int channel, bool mctruth)
192192
{"disable-qed", o2::framework::VariantType::Bool, false, {"disable QED handling"}},
193193
{"disable-dead-channel-map", o2::framework::VariantType::Bool, false, {"Don't mask dead channels"}}};
194194
// Options{{"pileup", VariantType::Int, 1, {"whether to run in continuous time mode"}}}};
195+
}
195196
}
196197

197198
} // end namespace fv0

0 commit comments

Comments
 (0)