CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DigiDMPreMix_cff.py
Go to the documentation of this file.
2 
3 #
4 # Full-scale Digitization of the simulated hits
5 # in all CMS subdets : Tracker, ECAL, HCAl, Muon's;
6 # MixingModule (at least in zero-pileup mode) needs
7 # to be included to make Digi's operational, since
8 # it's required for ECAL/HCAL & Muon's
9 # Defined in a separate fragment
10 #
11 # Tracker Digis (Pixel + SiStrips) are now made in the mixing
12 # module, so the old "trDigi" sequence has been taken out.
13 #
14 
15 # Calorimetry Digis (Ecal + Hcal) - * unsuppressed *
16 # returns sequence "calDigi"
18 # Muon Digis (CSC + DT + RPC)
19 # returns sequence "muonDigi"
20 #
22 
23 # add updating the GEN information by default
25 
26 doAllDigi = cms.Sequence(calDigi+muonDigi)
27 pdigi = cms.Sequence(fixGenInfo*cms.SequencePlaceholder("randomEngineStateProducer")*cms.SequencePlaceholder("mix")*doAllDigi)
28 pdigi_valid = cms.Sequence(pdigi)
29 # for PreMixing, to first approximation, allow noise in Muon system
30 
31 # remove unnecessary modules from 'pdigi' sequence - run after DataMixing
32 # standard mixing module now makes unsuppressed digis for calorimeter
33 pdigi.remove(simEcalTriggerPrimitiveDigis)
34 pdigi.remove(simEcalDigis) # does zero suppression
35 pdigi.remove(simEcalPreshowerDigis) # does zero suppression
36 pdigi.remove(simHcalDigis)
37 pdigi.remove(simHcalTTPDigis)
38