CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HI_ZEESkim_cff.py
Go to the documentation of this file.
2 
3 # HLT dimuon trigger
5 hltZEEHI = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone()
6 hltZEEHI.HLTPaths = ["HLT_HIDoublePhoton15_Eta1p5_Mass50_1000_R9HECut_v*"]
7 hltZEEHI.throw = False
8 hltZEEHI.andOr = True
9 
10 # selection of valid vertex
11 primaryVertexFilterForZEE = cms.EDFilter("VertexSelector",
12  src = cms.InputTag("hiSelectedVertex"),
13  cut = cms.string("!isFake && abs(z) <= 25 && position.Rho <= 2"),
14  filter = cms.bool(True), # otherwise it won't filter the events
15  )
16 
17 # Z->ee skim sequence
18 zEESkimSequence = cms.Sequence(
19  hltZEEHI *
20  primaryVertexFilterForZEE
21  )