From 79272dc5b62d8481af631836e3b5b7ec4731f0b0 Mon Sep 17 00:00:00 2001 From: Dinko Ferencek Date: Thu, 29 Feb 2024 20:29:11 +0100 Subject: [PATCH] disabled creation of PixelFEDChannelCollection by MixingModule in premix stage2 The PixelFEDChannelCollection produced by the MixingModule in premix stage2 is not used at all so there is no point is creating it. Another PixelFEDChannelCollection is produced later by the DataMixer and propagated to tracking (after undergoing DigiToRaw and RawToDigi steps). --- SimGeneral/MixingModule/python/pixelDigitizer_cfi.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SimGeneral/MixingModule/python/pixelDigitizer_cfi.py b/SimGeneral/MixingModule/python/pixelDigitizer_cfi.py index bb0bd83bd13a4..da76ee8ea334c 100644 --- a/SimGeneral/MixingModule/python/pixelDigitizer_cfi.py +++ b/SimGeneral/MixingModule/python/pixelDigitizer_cfi.py @@ -20,7 +20,8 @@ # customization applies only to phase0/1 pixel. from Configuration.ProcessModifiers.premix_stage2_cff import premix_stage2 premix_stage2.toModify(pixelDigitizer, - AddPixelInefficiency = False # will be added in DataMixer + AddPixelInefficiency = False, # will be added in DataMixer + KillBadFEDChannels = False # will be added in DataMixer ) from SimTracker.SiPhase2Digitizer.phase2TrackerDigitizer_cfi import phase2TrackerDigitizer as _phase2TrackerDigitizer, _premixStage1ModifyDict