Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:51

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # HF RecoEcalCandidate Producer
0004 #Values for specific electron cuts and "DataBase" version/vector format below code
0005 HLTHFRecoEcalCandidate = cms.EDProducer("HLTHFRecoEcalCandidateProducer",
0006                                         e9e25Cut = cms.double(0.94),
0007                                         hfclusters = cms.InputTag("hfEMClusters"),
0008                                         Correct = cms.bool(True),
0009                                         intercept2DCut = cms.double(0.7),
0010                                         intercept2DSlope = cms.double(0.475),
0011                                         e1e9Cut= cms.vdouble(-1,99),
0012                                         eCOREe9Cut= cms.vdouble(-1,99),
0013                                         eSeLCut= cms.vdouble(-1,99)
0014                                         
0015                                         )
0016                                        
0017 
0018 #Electron Cuts for HLT
0019 ##                                      tight cut
0020 ##                                      intercept2DCut = cms.double(0.7),
0021 ##                                      intercept2DSlope = cms.double(0.475),
0022 
0023 
0024 
0025 
0026 
0027 
0028