CMS 3D CMS Logo

hltEgammaSuperClustersToPixelMatchUnseeded_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hltEgammaSuperClustersToPixelMatchUnseeded = cms.EDProducer("EgammaHLTFilteredSuperClusterProducer",
4  cands = cms.InputTag("hltEgammaCandidatesUnseeded"),
5  cuts = cms.VPSet(cms.PSet(
6  barrelCut = cms.PSet(
7  cutOverE = cms.double(0.2),
8  useEt = cms.bool(False)
9  ),
10  endcapCut = cms.PSet(
11  cutOverE = cms.double(0.2),
12  useEt = cms.bool(False)
13  ),
14  var = cms.InputTag("hltEgammaHoverEUnseeded")
15  )),
16  minEtCutEB = cms.double(10.0),
17  minEtCutEE = cms.double(10.0)
18 )