CMS 3D CMS Logo

ShallowSimhitClustersProducer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 shallowSimhitClusters = cms.EDProducer(
4  "ShallowSimhitClustersProducer",
5  Prefix = cms.string("sim"),
6  Clusters = cms.InputTag("siStripClusters"),
7  InputTags = cms.VInputTag(
8  cms.InputTag('g4SimHits:TrackerHitsTECHighTof'),
9  cms.InputTag('g4SimHits:TrackerHitsTECLowTof'),
10  cms.InputTag('g4SimHits:TrackerHitsTIDHighTof'),
11  cms.InputTag('g4SimHits:TrackerHitsTIDLowTof'),
12  cms.InputTag('g4SimHits:TrackerHitsTIBHighTof'),
13  cms.InputTag('g4SimHits:TrackerHitsTIBLowTof'),
14  cms.InputTag('g4SimHits:TrackerHitsTOBHighTof'),
15  cms.InputTag('g4SimHits:TrackerHitsTOBLowTof')
16  ),
17  runningMode = cms.string("deconvolution")
18  )