CMS 3D CMS Logo

L1CaloJets_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # This cff file is based off of the L1T Phase-2 Menu group using
4 # the process name "REPR"
5 
6 
7 # --------------------------------------------------------------------------------------------
8 #
9 # ---- Produce the L1EGCrystal clusters using Emulator
10 
12 l1tEGammaClusterEmuProducer.ecalTPEB = cms.InputTag("simEcalEBTriggerPrimitiveDigis","","")
13 
14 
15 # --------------------------------------------------------------------------------------------
16 #
17 # ---- Produce the calibrated tower collection combining Barrel, HGCal, HF
18 
20 l1tTowerCalibrationProducer.L1HgcalTowersInputTag = cms.InputTag("l1tHGCalTowerProducer","HGCalTowerProcessor","")
21 l1tTowerCalibrationProducer.l1CaloTowers = cms.InputTag("l1tEGammaClusterEmuProducer","L1CaloTowerCollection","")
22 
23 
24 
25 # --------------------------------------------------------------------------------------------
26 #
27 # ---- Produce the L1CaloJets
28 
30 l1tCaloJetProducer.l1CaloTowers = cms.InputTag("l1tTowerCalibrationProducer","L1CaloTowerCalibratedCollection","")
31 l1tCaloJetProducer.L1CrystalClustersInputTag = cms.InputTag("l1tEGammaClusterEmuProducer", "L1EGXtalClusterEmulator","")
32 
33 
34 
35 # --------------------------------------------------------------------------------------------
36 #
37 # ---- Produce the CaloJet HTT Sums
38 
40 
41 
42 
43 L1TCaloJetsSequence = cms.Sequence(
44  l1tEGammaClusterEmuProducer *
45  l1tTowerCalibrationProducer *
46  l1tCaloJetProducer *
47  l1tCaloJetHTTProducer
48 )