CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/RecoTracker/TkSeedGenerator/python/GlobalCombinedSeeds_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 globalCombinedSeeds = cms.EDProducer("SeedCombiner",
00004     seedCollections = cms.VInputTag( 
00005         cms.InputTag("globalSeedsFromTripletsWithVertices"),
00006         cms.InputTag("globalSeedsFromPairsWithVertices"),
00007     )
00008     # the following allows to re-key the cluster reference of the rechits on the seeds that are put together
00009     #N.B the cluster removal infos should be the same as the one use in the corresponding track producer.
00010     #,clusterRemovalInfos = cms.VInputTag(cms.InputTag(""),cms.InputTag("clusterRemovalForGlobalSeedsFromPairsWithVertices"))
00011        
00012 )
00013 
00014