Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:08:01

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 ## test for electronId
0004 simpleEleId70cIso = cms.EDProducer(
0005     "EleIdCutBasedExtProducer",
0006     src = cms.InputTag("gedGsfElectrons"),
0007     reducedBarrelRecHitCollection = cms.InputTag("reducedEcalRecHitsEB"),
0008     reducedEndcapRecHitCollection = cms.InputTag("reducedEcalRecHitsEE"),
0009     verticesCollection = cms.InputTag("offlineBeamSpot"),
0010     dataMagneticFieldSetUp = cms.bool(False),
0011     dcsTag = cms.InputTag("scalersRawToDigi"),                                          
0012     algorithm = cms.string('eIDCB'),
0013     electronIDType  = cms.string('robust'),
0014     electronQuality = cms.string('70cIso'),
0015     electronVersion = cms.string('V04'),
0016     ## 70% point modified with restricting cuts to physical values                                          
0017     robust70cIsoEleIDCutsV04 = cms.PSet(
0018         barrel =  cms.vdouble(2.5e-02, 1.0e-02, 3.0e-02, 4.0e-03, -1, -1, 9999., 9999., 9999., 9999., 9999., 9999., 
0019                               9999., 9999., 9999., 9999., 9999., 4.0e-02, 0.0, -9999., 9999., 9999., 0, -1, 0.02, 0.02, ),
0020         endcap =  cms.vdouble(2.5e-02, 3.0e-02, 2.0e-02, 5.0e-03, -1, -1, 9999., 9999., 9999., 9999., 9999., 9999., 
0021                               9999., 9999., 9999., 9999., 9999., 3.0e-02, 0.0, -9999., 9999., 9999., 0, -1, 0.02, 0.02, ),
0022     ),
0023 )