CMS 3D CMS Logo

HLTHFRecoEcalCandidate_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # HF RecoEcalCandidate Producer
4 #Values for specific electron cuts and "DataBase" version/vector format below code
5 HLTHFRecoEcalCandidate = cms.EDProducer("HLTHFRecoEcalCandidateProducer",
6  e9e25Cut = cms.double(0.94),
7  hfclusters = cms.InputTag("hfEMClusters"),
8  Correct = cms.bool(True),
9  intercept2DCut = cms.double(0.7),
10  intercept2DSlope = cms.double(0.475),
11  e1e9Cut= cms.vdouble(-1,99),
12  eCOREe9Cut= cms.vdouble(-1,99),
13  eSeLCut= cms.vdouble(-1,99)
14 
15  )
16 
17 
18 #Electron Cuts for HLT
19 ## tight cut
20 ## intercept2DCut = cms.double(0.7),
21 ## intercept2DSlope = cms.double(0.475),
22 
23 
24 
25 
26 
27 
28