CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
fastElectronSeeds_cfi.py
Go to the documentation of this file.
2 
3 #
4 # module to produce pixel seeds for electrons from super clusters
5 # $Id: fastElectronSeeds_cfi.py,v 1.4 2008/06/05 02:51:33 hegner Exp $
6 # Author: Ursula Berthon, Claude Charlot
7 #
9 
10 fastElectronSeeds = cms.EDProducer("FastElectronSeedProducer",
11  endcapSuperClusters = cms.InputTag("correctedMulti5x5SuperClustersWithPreshower"),
12  SeedConfiguration = cms.PSet(
13  ecalDrivenElectronSeedsParameters
14  ),
15  beamSpot = cms.InputTag("offlineBeamSpot"),
16  # Inputs
17  barrelSuperClusters = cms.InputTag("correctedHybridSuperClusters"),
18  simTracks = cms.InputTag("famosSimHits"),
19  # A cut on the sim track transverse momentum (specific to fastSim)
20  pTMin = cms.double(3.0),
21  trackerHits = cms.InputTag("siTrackerGaussianSmearingRecHits","TrackerGSMatchedRecHits")
22 )
23 
24