Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:18:56

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hemispheres = cms.EDFilter(
0004     "HLTRHemisphere",
0005     inputTag = cms.InputTag("ak4PFJetsCHS"),
0006     minJetPt = cms.double(40),
0007     maxEta = cms.double(3.0),
0008     maxNJ = cms.int32(9)
0009 )
0010 
0011 caloHemispheres = cms.EDFilter(
0012     "HLTRHemisphere",
0013     inputTag = cms.InputTag("ak4CaloJets"),
0014     minJetPt = cms.double(30),
0015     maxEta = cms.double(3.0),
0016     maxNJ = cms.int32(9)
0017 )
0018 
0019 hemisphereSequence = cms.Sequence(hemispheres)
0020 
0021 caloHemisphereSequence = cms.Sequence(caloHemispheres)