CMS 3D CMS Logo

electronPixelSeeds_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: electronPixelSeeds_cfi.py,v 1.7 2008/05/29 07:51:28 arizzi Exp $
00006 # Author:  Ursula Berthon, Claude Charlot
00007 #
00008 from RecoEgamma.EgammaElectronProducers.pixelSeedConfiguration_cfi import *
00009 electronPixelSeeds = cms.EDProducer("ElectronPixelSeedProducer",
00010     #  InputTag endcapSuperClusters = correctedEndcapSuperClustersWithPreshower
00011     endcapSuperClusters = cms.InputTag("correctedMulti5x5SuperClustersWithPreshower"),
00012     SeedConfiguration = cms.PSet(
00013         electronPixelSeedConfiguration,
00014         OrderedHitsFactoryPSet = cms.PSet(
00015             ComponentName = cms.string('StandardHitPairGenerator'),
00016             SeedingLayers = cms.string('MixedLayerPairs') ##"PixelLayerPairs"
00017 
00018         ),
00019         TTRHBuilder = cms.string('WithTrackAngle'),
00020         # eta-phi-region
00021         RegionPSet = cms.PSet(
00022             deltaPhiRegion = cms.double(0.7),
00023             originHalfLength = cms.double(15.0),
00024             useZInVertex = cms.bool(True),
00025             deltaEtaRegion = cms.double(0.3),
00026             ptMin = cms.double(1.5),
00027             originRadius = cms.double(0.2),
00028             VertexProducer = cms.InputTag("pixelVertices")
00029         )
00030     ),
00031     barrelSuperClusters = cms.InputTag("correctedHybridSuperClusters")
00032 )
00033 
00034 

Generated on Tue Jun 9 17:43:22 2009 for CMSSW by  doxygen 1.5.4