Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:28:29

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 clusterShapeExtractor = cms.EDAnalyzer("PixelClusterShapeExtractor",
0004     tracks = cms.InputTag("generalTracks"),
0005     clusterShapeCacheSrc = cms.InputTag('siPixelClusterShapeCache'),
0006     pixelSimLinkSrc = cms.InputTag('simSiPixelDigis'),
0007     hasSimHits     = cms.bool(True),
0008     hasRecTracks   = cms.bool(False),
0009     noBPIX1   = cms.bool(False),
0010 # for the associator
0011     associateStrip      = cms.bool(False),
0012     associatePixel      = cms.bool(True),
0013     associateRecoTracks = cms.bool(False),
0014     ROUList = cms.vstring(
0015       'TrackerHitsPixelBarrelLowTof',
0016       'TrackerHitsPixelBarrelHighTof',
0017       'TrackerHitsPixelEndcapLowTof',
0018       'TrackerHitsPixelEndcapHighTof')
0019 )
0020 
0021 from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker
0022 phase2_tracker.toModify(clusterShapeExtractor,
0023     pixelSimLinkSrc = 'simSiPixelDigis:Pixel'
0024 )