File indexing completed on 2024-04-06 12:06:47
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020 singleRecoElectronPt20Filter = cms.EDFilter("GsfElectronRefSelector",
0021 src = cms.InputTag("gedGsfElectrons"),
0022 cut = cms.string('pt > 20.0 && abs(eta) < 2.5 ' ),
0023 filter = cms.bool(True),
0024 minN = cms.int32(1)
0025 )
0026
0027 singleRecoElectronPt15Filter = cms.EDFilter("GsfElectronRefSelector",
0028 src = cms.InputTag("gedGsfElectrons"),
0029 cut = cms.string('pt > 15.0 && abs(eta) < 2.5 ' ),
0030 filter = cms.bool(True),
0031 minN = cms.int32(1)
0032 )
0033
0034 singleRecoElectronPt10Filter = cms.EDFilter("GsfElectronRefSelector",
0035 src = cms.InputTag("gedGsfElectrons"),
0036 cut = cms.string('pt > 10.0 && abs(eta) < 2.5 ' ),
0037 filter = cms.bool(True),
0038 minN = cms.int32(1)
0039 )
0040
0041 singleRecoElectronPt5Filter = cms.EDFilter("GsfElectronRefSelector",
0042 src = cms.InputTag("gedGsfElectrons"),
0043 cut = cms.string('pt > 5.0 && abs(eta) < 2.5 ' ),
0044 filter = cms.bool(True),
0045 minN = cms.int32(1)
0046 )
0047
0048 singleRecoElectronPt1Filter = cms.EDFilter("GsfElectronRefSelector",
0049 src = cms.InputTag("gedGsfElectrons"),
0050 cut = cms.string('pt > 1.0 && abs(eta) < 2.5 ' ),
0051 filter = cms.bool(True),
0052 minN = cms.int32(1)
0053 )
0054
0055
0056
0057
0058
0059
0060
0061
0062
0063
0064
0065
0066
0067
0068
0069
0070
0071
0072
0073
0074
0075
0076
0077
0078
0079
0080
0081
0082 singleElectronPt20RecoQualitySeq = cms.Sequence(
0083
0084 singleRecoElectronPt20Filter
0085 )
0086
0087 singleElectronPt15RecoQualitySeq = cms.Sequence(
0088
0089 singleRecoElectronPt15Filter
0090 )
0091
0092 singleElectronPt10RecoQualitySeq = cms.Sequence(
0093
0094 singleRecoElectronPt10Filter
0095 )
0096
0097 singleElectronPt5RecoQualitySeq = cms.Sequence(
0098
0099 singleRecoElectronPt5Filter
0100 )
0101
0102 singleElectronPt1RecoQualitySeq = cms.Sequence(
0103
0104 singleRecoElectronPt1Filter
0105 )
0106
0107
0108
0109