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 newCombinedSeeds = cms.EDProducer(
4  "SeedCombiner",
5  seedCollections = cms.VInputTag(
6  cms.InputTag('initialStepSeeds'),
7  #cms.InputTag('lowPtTripletStepSeeds'),
8  cms.InputTag('pixelPairStepSeeds'),
9  cms.InputTag('mixedTripletStepSeeds'),
10  cms.InputTag('pixelLessStepSeeds'),
11  )
12  )
13