CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CaloTowersOptForMET_cff.py
Go to the documentation of this file.
2 
3 # File: CaloMETOptcaloTowers.cff
4 # Author: B. Scurlock
5 # Date: 02.28.2008
6 #
7 # Form Missing ET from optimized calotowers. The HCALRecHit thresholds
8 # are based on Feng Liu's optimization study.
9 # IMPORTANT: this configuration assumes that RecHits are in the event
10 # reconstruct CaloRecHits and create calotowers here
13 caloTowersForMET = cms.EDProducer("CaloTowerCandidateCreator",
14  src = cms.InputTag("towerMaker"),
15  minimumEt = cms.double(-1.0),
16  minimumE = cms.double(-1.0)
17 )
18 
19 caloTowersOpt = cms.EDProducer("CaloTowerCandidateCreator",
20  src = cms.InputTag("calotoweroptmaker"),
21  minimumEt = cms.double(-1.0),
22  minimumE = cms.double(-1.0)
23 )
24 
25 # sequence caloTowersMETOptRec = { calotoweroptmaker, caloTowersOpt, caloTowersForMET }
26 caloTowersMETOptRec = cms.Sequence(calotoweroptmaker)
27