CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/RecoMET/METProducers/python/CaloTowersOpt_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # File: CaloTowerOpt.cfi
00004 # Author: B. Scurlock
00005 # Date: 03.06.2008
00006 #
00007 # Form uncorrected Missing ET from Calorimeter Towers and store into event as a CaloMET
00008 # product
00009 # Creates new calotowers with optimized Energy thresholds for MET.
00010 # === Modification: 09/30/08 by R. Remington
00011 # === Made modifications to accomodate changes to towerMaker (done by A. Oehler)
00012 # === Modification : 05/14/09 by R.Remington
00013 # === Now cloning the central calotowermaker module and changing parameters for optimized thresholds instead of writing another independent module   
00014 
00015 from RecoLocalCalo.CaloTowersCreator.calotowermaker_cfi import *
00016 
00017 calotoweroptmaker = calotowermaker.clone() 
00018 calotoweroptmaker.UseHO = False
00019 calotoweroptmaker.HBThreshold = cms.double(0.5)
00020 calotoweroptmaker.HESThreshold = cms.double(0.7)
00021 calotoweroptmaker.HEDThreshold = cms.double(0.5)
00022 
00023 calotoweroptmakerWithHO = calotoweroptmaker.clone()
00024 calotoweroptmakerWithHO.UseHO = True
00025 
00026