Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 globalCombinedSeeds = cms.EDProducer("SeedCombiner",
0004     seedCollections = cms.VInputTag( 
0005         cms.InputTag("globalSeedsFromTripletsWithVertices"),
0006         cms.InputTag("globalSeedsFromPairsWithVertices"),
0007     )
0008     # the following allows to re-key the cluster reference of the rechits on the seeds that are put together
0009     #N.B the cluster removal infos should be the same as the one use in the corresponding track producer.
0010     #,clusterRemovalInfos = cms.VInputTag(cms.InputTag(""),cms.InputTag("clusterRemovalForGlobalSeedsFromPairsWithVertices"))
0011        
0012 )
0013 
0014