CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
razorHemispheres_cff.py
Go to the documentation of this file.
2 
3 from RecoJets.JetProducers.ak4PFJets_cfi import ak4PFJets
4 from RecoJets.Configuration.RecoPFJets_cff import ak4PFJetsCHS
5 
6 hemispheres = cms.EDFilter(
7  "HLTRHemisphere",
8  inputTag = cms.InputTag("ak4PFJetsCHS"),
9  minJetPt = cms.double(40),
10  maxEta = cms.double(3.0),
11  maxNJ = cms.int32(9)
12 )
13 
14 hemisphereSequence = cms.Sequence(ak4PFJets*ak4PFJetsCHS*hemispheres)