CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_1/src/RecoMET/METProducers/python/BeamHaloSummary_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 # File: BeamHaloSummary_cfi.py
00003 # Original Author: R. Remington, The University of Florida
00004 # Description: Module to build BeamHaloSummary Object and put into the event
00005 # Date: Oct. 15, 2009
00006 
00007 BeamHaloSummary = cms.EDProducer("BeamHaloSummaryProducer",
00008                                  CSCHaloDataLabel = cms.InputTag("CSCHaloData"),
00009                                  EcalHaloDataLabel = cms.InputTag("EcalHaloData"),
00010                                  HcalHaloDataLabel = cms.InputTag("HcalHaloData"),
00011                                  GlobalHaloDataLabel = cms.InputTag("GlobalHaloData"),
00012                                  
00013                                  ## Ecal Loose Id 
00014                                  l_EcalPhiWedgeEnergy = cms.double(10.),
00015                                  l_EcalPhiWedgeConstituents = cms.int32(6),
00016                                  l_EcalPhiWedgeToF = cms.double(-200.),  ### needs to be tuned when absolute timing in  EB/EE is understood w.r.t LHC
00017                                  l_EcalPhiWedgeConfidence = cms.double(.7),
00018                                  l_EcalShowerShapesRoundness = cms.double(.41),
00019                                  l_EcalShowerShapesAngle = cms.double(.51),
00020                                  l_EcalSuperClusterEnergy = cms.double(10.), # This  will be Et
00021                                  l_EcalSuperClusterSize = cms.int32(3),
00022 
00023                                  ## Ecal Tight Id
00024                                  t_EcalPhiWedgeEnergy = cms.double(20.),
00025                                  t_EcalPhiWedgeConstituents = cms.int32(8),
00026                                  t_EcalPhiWedgeToF = cms.double(-200.), ### needs to be tuned when absolute timing in  EB/EE is understood w.r.t LHC
00027                                  t_EcalPhiWedgeConfidence = cms.double(0.9),
00028                                  t_EcalShowerShapesRoundness = cms.double(.23),
00029                                  t_EcalShowerShapesAngle = cms.double(0.51),
00030                                  t_EcalSuperClusterEnergy = cms.double(10.), # This will be Et 
00031                                  t_EcalSuperClusterSize = cms.int32(3),
00032 
00033                                  ## Hcal Loose Id 
00034                                  l_HcalPhiWedgeEnergy = cms.double(20.),
00035                                  l_HcalPhiWedgeConstituents = cms.int32(6),
00036                                  l_HcalPhiWedgeToF = cms.double(-100.),  ### needs to be tuned when absolute timing in  HB/HE is understood w.r.t LHC
00037                                  l_HcalPhiWedgeConfidence = cms.double(0.7),
00038 
00039                                  ## Hcal Tight Id
00040                                  t_HcalPhiWedgeEnergy = cms.double(25.),
00041                                  t_HcalPhiWedgeConstituents = cms.int32(8),
00042                                  t_HcalPhiWedgeToF = cms.double(-100.), ### needs to be tuned when absolute timing in  HB/HE is understood w.r.t LHC
00043                                  t_HcalPhiWedgeConfidence = cms.double(0.9)
00044                                  
00045                                  )
00046