CMS 3D CMS Logo

ClusterShapeExtractor_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 clusterShapeExtractor = cms.EDAnalyzer("PixelClusterShapeExtractor",
4  tracks = cms.InputTag("generalTracks"),
5  clusterShapeCacheSrc = cms.InputTag('siPixelClusterShapeCache'),
6  pixelSimLinkSrc = cms.InputTag('simSiPixelDigis'),
7  hasSimHits = cms.bool(True),
8  hasRecTracks = cms.bool(False),
9  noBPIX1 = cms.bool(False),
10 # for the associator
11  associateStrip = cms.bool(False),
12  associatePixel = cms.bool(True),
13  associateRecoTracks = cms.bool(False),
14  ROUList = cms.vstring(
15  'TrackerHitsPixelBarrelLowTof',
16  'TrackerHitsPixelBarrelHighTof',
17  'TrackerHitsPixelEndcapLowTof',
18  'TrackerHitsPixelEndcapHighTof')
19 )
20 
21 from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker
22 phase2_tracker.toModify(clusterShapeExtractor,
23  pixelSimLinkSrc = cms.InputTag('simSiPixelDigis', 'Pixel'),
24 )