File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
Configuration/Skimming/python Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 33# HLT dimuon trigger
44import HLTrigger .HLTfilters .hltHighLevel_cfi
55hltEMuHI = HLTrigger .HLTfilters .hltHighLevel_cfi .hltHighLevel .clone ()
6- hltEMuHI .HLTPaths = ["HLT_HIL1Mu5Eta2p5_Ele20Gsf_v *" ]
6+ hltEMuHI .HLTPaths = ["HLT_HIEle*Gsf_v*" , "HLT_HIL3SingleMu*_Open_v *" ]
77hltEMuHI .throw = False
88hltEMuHI .andOr = True
99
1717# single lepton selector
1818electronSelectorForEMu = cms .EDFilter ("GsfElectronRefSelector" ,
1919 src = cms .InputTag ("gedGsfElectrons" ),
20- cut = cms .string ("pt > 20 && abs(eta)<1.44 " )
20+ cut = cms .string ("pt > 20" )
2121 )
2222
2323muonSelectorForEMu = cms .EDFilter ("MuonSelector" ,
2424 src = cms .InputTag ("muons" ),
25- cut = cms .string ("(isTrackerMuon && isGlobalMuon) && pt > 20." ),
25+ cut = cms .string ("isPFMuon && isGlobalMuon && pt > 20." ),
2626 filter = cms .bool (True )
2727 )
2828
Original file line number Diff line number Diff line change 44# HLT dimuon trigger
55import HLTrigger .HLTfilters .hltHighLevel_cfi
66hltZEEHI = HLTrigger .HLTfilters .hltHighLevel_cfi .hltHighLevel .clone ()
7- hltZEEHI .HLTPaths = ["HLT_HIDoubleEle10Gsf_v *" ]
7+ hltZEEHI .HLTPaths = ["HLT_HIEle*Gsf_v *" ]
88hltZEEHI .throw = False
99hltZEEHI .andOr = True
1010
1818# single lepton selector
1919goodElectronsForZEE = cms .EDFilter ("GsfElectronRefSelector" ,
2020 src = cms .InputTag ("gedGsfElectrons" ),
21- cut = cms .string ("pt > 25 && abs(eta)<1.44 " )
21+ cut = cms .string ("pt > 25" )
2222 )
2323
2424## dilepton selectors
2525diElectronsForZEE = cms .EDProducer ("CandViewShallowCloneCombiner" ,
2626 decay = cms .string ("goodElectronsForZEE goodElectronsForZEE" ),
2727 checkCharge = cms .bool (False ),
28- cut = cms .string ("mass > 80 && mass < 110 " )
28+ cut = cms .string ("mass > 60 " )
2929 )
3030
3131# dilepton counter
Original file line number Diff line number Diff line change 33# HLT dimuon trigger
44import HLTrigger .HLTfilters .hltHighLevel_cfi
55hltZMMPbPb = HLTrigger .HLTfilters .hltHighLevel_cfi .hltHighLevel .clone ()
6- hltZMMPbPb .HLTPaths = ["HLT_HIL1DoubleMu10_v *" ]
6+ hltZMMPbPb .HLTPaths = ["HLT_HIL3SingleMu*_Open_v *" ]
77hltZMMPbPb .throw = False
88hltZMMPbPb .andOr = True
99
1717# selection of dimuons with mass in Z range
1818muonSelectorForZMM = cms .EDFilter ("MuonSelector" ,
1919 src = cms .InputTag ("muons" ),
20- cut = cms .string ("(isTrackerMuon && isGlobalMuon) && pt > 25 ." ),
20+ cut = cms .string ("(isPFMuon && isGlobalMuon) && pt > 20 ." ),
2121 filter = cms .bool (True )
2222 )
2323
2828
2929dimuonMassCutForZMM = cms .EDProducer ("CandViewShallowCloneCombiner" ,
3030 checkCharge = cms .bool (True ),
31- cut = cms .string (' 80 < mass < 110 ' ),
31+ cut = cms .string ('mass > 60 ' ),
3232 decay = cms .string ("muonSelectorForZMM@+ muonSelectorForZMM@-" )
3333 )
3434
You can’t perform that action at this time.
0 commit comments