CMS 3D CMS Logo

globalGsfElectrons_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # produce electrons based on matched pixel hits with gsf fit
00004 #
00005 globalGsfElectrons = cms.EDProducer("GlobalGsfElectronProducer",
00006     endcapSuperClusters = cms.InputTag("correctedMulti5x5SuperClustersWithPreshower"),
00007     maxDeltaPhi = cms.double(0.1),
00008     minEOverPEndcaps = cms.double(0.35),
00009     # nested parameter set for TransientInitialStateEstimator
00010     TransientInitialStateEstimatorParameters = cms.PSet(
00011         propagatorAlongTISE = cms.string('PropagatorWithMaterial'),
00012         propagatorOppositeTISE = cms.string('PropagatorWithMaterialOpposite')
00013     ),
00014     minEOverPBarrel = cms.double(0.35),
00015     barrelSuperClusters = cms.InputTag("correctedHybridSuperClusters"),
00016     applyEtaCorrection = cms.bool(False),
00017     applyAmbResolution = cms.bool(False),
00018     EtCut = cms.double(0.0), ## in Gev
00019 
00020     tracks = cms.InputTag("pixelMatchGsfFitForGlobalGsfElectrons"),
00021     maxDeltaEta = cms.double(0.02),
00022     # electron preselection parameters
00023     maxEOverPBarrel = cms.double(3.0),
00024     highPtPreselection = cms.bool(False),
00025     hcalRecHits = cms.InputTag("hbhereco"),
00026     maxHOverE = cms.double(0.2),
00027     highPtMin = cms.double(150.0),
00028     hOverEConeSize = cms.double(0.1),
00029     maxEOverPEndcaps = cms.double(5.0)
00030 )
00031 
00032 

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