CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CaloMETSignif_cfi.py
Go to the documentation of this file.
2 # File: CaloMETSignif_cfi.py
3 # Author: F.Blekman
4 # Date: 07.30.2008
5 #
6 # Run the missing ET significance algorithm.
7 
8 # product
9 metsignificance = cms.EDProducer("METProducer",
10  src = cms.InputTag("towerMaker"),
11  METType = cms.string('CaloMETSignif'),
12  alias = cms.string('RawCaloMETSignif'),
13  noHF = cms.bool(False),
14  globalThreshold = cms.double(0.5),
15  InputType = cms.string('CandidateCollection'),
16 
17  #missing ET significance resolution parameters:
18  # ET resolution has three parameters, defined as parameters in 'standard' resolution function res= et*sqrt((par[2]*par[2])+(par[1]*par[1]/et)+(par[0]*par[0]/(et*et)));
19  # PHI resolution has one parameter,defined as res = par[0]*et;
20 
21  #ECAL:
22  EB_EtResPar = cms.vdouble(0.2,0.03,0.005),
23  EB_PhiResPar = cms.vdouble(0.00502), # 0.0174/sqrt(12)
24  EE_EtResPar = cms.vdouble(0.2,0.03,0.005),
25  EE_PhiResPar = cms.vdouble(0.02511), # 0.087/sqrt(12)
26  #HCAL:
27  HB_EtResPar = cms.vdouble(0.,1.22,0.05),
28  HB_PhiResPar = cms.vdouble(0.02511), # 0.087/sqrt(12)
29  HE_EtResPar = cms.vdouble(0.,1.3,0.05),
30  HE_PhiResPar = cms.vdouble(0.02511), # 0.087/sqrt(12)
31  HO_EtResPar = cms.vdouble(0.,1.3,0.005),
32  HO_PhiResPar = cms.vdouble(0.02511), # 0.087/sqrt(12)
33  HF_EtResPar = cms.vdouble(0.,1.82,0.09),
34  HF_PhiResPar = cms.vdouble(0.05022) # 0.174/sqrt(12)
35 )
36 
37