Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 siStripClusters = cms.EDProducer("ClusterRefinerTagMCmerged",
0004   UntaggedClusterProducer = cms.InputTag('siStripClustersUntagged'),
0005   ClusterRefiner = cms.PSet(
0006 #   For TrackerHitAssociator
0007     ROUList = cms.vstring('g4SimHitsTrackerHitsTIBLowTof',
0008                           'g4SimHitsTrackerHitsTIBHighTof',
0009                           'g4SimHitsTrackerHitsTIDLowTof',
0010                           'g4SimHitsTrackerHitsTIDHighTof',
0011                           'g4SimHitsTrackerHitsTOBLowTof',
0012                           'g4SimHitsTrackerHitsTOBHighTof',
0013                           'g4SimHitsTrackerHitsTECLowTof',
0014                           'g4SimHitsTrackerHitsTECHighTof'),
0015     associateRecoTracks = cms.bool(True),  # True to save some time if no PU
0016     associatePixel = cms.bool(False),
0017     associateStrip = cms.bool(True)
0018   )
0019 )