CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
isolEcalPixelTrackProd_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 isolEcalPixelTrackProd = cms.EDProducer("IsolatedEcalPixelTrackCandidateProducer",
4  filterLabel = cms.InputTag("hltIsolPixelTrackL2Filter"),
5  EBRecHitSource = cms.InputTag("hltEcalRecHit", "EcalRecHitsEB"),
6  EERecHitSource = cms.InputTag("hltEcalRecHit", "EcalRecHitsEE"),
7  ECHitEnergyThreshold = cms.double(0.05),
8  ECHitCountEnergyThreshold = cms.double(0.5),
9  EcalConeSizeEta0 = cms.double(0.09),
10  EcalConeSizeEta1 = cms.double(0.14)
11  )
12 
13