CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GlobalCombinedSeeds_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 globalCombinedSeeds = cms.EDProducer("SeedCombiner",
4  seedCollections = cms.VInputTag(
5  cms.InputTag("globalSeedsFromTripletsWithVertices"),
6  cms.InputTag("globalSeedsFromPairsWithVertices"),
7  )
8  # the following allows to re-key the cluster reference of the rechits on the seeds that are put together
9  #N.B the cluster removal infos should be the same as the one use in the corresponding track producer.
10  #,clusterRemovalInfos = cms.VInputTag(cms.InputTag(""),cms.InputTag("clusterRemovalForGlobalSeedsFromPairsWithVertices"))
11 
12 )
13 
14