CMS 3D CMS Logo

stripDigitizer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 from SimGeneral.MixingModule.SiStripSimParameters_cfi import SiStripSimBlock
5 
6 stripDigitizer = cms.PSet(
7  SiStripSimBlock,
8  accumulatorType = cms.string("SiStripDigitizer"),
9  hitsProducer = cms.string('g4SimHits'),
10  makeDigiSimLinks = cms.untracked.bool(True)
11  )
12 
13 from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker
14 phase2_tracker.toModify( stripDigitizer, ROUList = ["g4SimHitsTrackerHitsPixelBarrelLowTof",
15  "g4SimHitsTrackerHitsPixelEndcapLowTof"]
16 )
17