CMS 3D CMS Logo

PatElectronAnalyzer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 analyzePatElectron = cms.EDAnalyzer("PatElectronAnalyzer",
5 
7  mode = cms.uint32(0),
8 
9 
10  minPt = cms.double(10.),
11 
12  maxEta= cms.double(1.4),
13 
21  electronID = cms.string('none'),
22 
23 
24  electronSrc = cms.InputTag("selectedLayer1Electrons"),
25 
26  particleSrc = cms.InputTag("genParticles"),
27 
28 
29  genMatchMode = cms.PSet(
30 
31  maxDeltaR = cms.double(0.1)
32  ),
33 
34 
35  tagAndProbeMode = cms.PSet(
36 
37  maxDeltaM = cms.double(10.),
38 
40  maxTagIso = cms.double(1.0)
41  )
42 )