CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Phase1L1TJets_9x9_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from math import pi
3 
4 from L1Trigger.L1CaloTrigger.Phase1L1TJetProducer_cfi import Phase1L1TJetProducer
5 from L1Trigger.L1CaloTrigger.Phase1L1TJetCalibrator_9x9Jets_cfi import Phase1L1TJetCalibrator as Phase1L1TJetCalibrator9x9
6 from L1Trigger.L1CaloTrigger.Phase1L1TJetSumsProducer_cfi import Phase1L1TJetSumsProducer
7 
8 Phase1L1TJetProducer9x9 = Phase1L1TJetProducer.clone(
9  jetIEtaSize = cms.uint32(9),
10  jetIPhiSize = cms.uint32(9),
11  outputCollectionName = cms.string("UncalibratedPhase1L1TJetFromPfCandidates")
12 )
13 
14 Phase1L1TJetCalibrator9x9.inputCollectionTag = cms.InputTag("Phase1L1TJetProducer9x9", "UncalibratedPhase1L1TJetFromPfCandidates", "")
15 Phase1L1TJetCalibrator9x9.outputCollectionName = cms.string("Phase1L1TJetFromPfCandidates")
16 
17 Phase1L1TJetSumsProducer9x9 = Phase1L1TJetSumsProducer.clone(
18  inputJetCollectionTag = cms.InputTag("Phase1L1TJetCalibrator9x9", "Phase1L1TJetFromPfCandidates"),
19 )
20 
21 Phase1L1TJetsSequence9x9 = cms.Sequence(
22  Phase1L1TJetProducer9x9 +
23  Phase1L1TJetCalibrator9x9 +
24  Phase1L1TJetSumsProducer9x9
25 )