CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/FastSimulation/EgammaElectronAlgos/python/fastElectronSeeds_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 # module to produce pixel seeds for electrons from super clusters
00005 # $Id: fastElectronSeeds_cfi.py,v 1.1 2009/02/04 11:05:16 chamont Exp $
00006 # Author:  Ursula Berthon, Claude Charlot
00007 #
00008 from RecoEgamma.EgammaElectronProducers.ecalDrivenElectronSeedsParameters_cff import *
00009 
00010 fastElectronSeeds = cms.EDProducer("FastElectronSeedProducer",
00011     endcapSuperClusters = cms.InputTag("correctedMulti5x5SuperClustersWithPreshower"),
00012     SeedConfiguration = cms.PSet(
00013         ecalDrivenElectronSeedsParameters
00014     ),
00015     beamSpot = cms.InputTag("offlineBeamSpot"),
00016     # Inputs
00017     barrelSuperClusters = cms.InputTag("correctedHybridSuperClusters"),
00018     simTracks = cms.InputTag("famosSimHits"),
00019     # A cut on the sim track transverse momentum (specific to fastSim)
00020     pTMin = cms.double(3.0),
00021     trackerHits = cms.InputTag("siTrackerGaussianSmearingRecHits","TrackerGSMatchedRecHits")
00022 )
00023 
00024