CMS 3D CMS Logo

stringResolutionProvider_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 stringResolution = cms.ESProducer("StringResolutionProviderESProducer",
4 
6  parametrization = cms.string ('EtEtaPhi'),
7  functions = cms.VPSet(
8  cms.PSet(
9 
11  bin = cms.string(""),
12 
13  et = cms.string("et * (sqrt(0.08^2 + (1./sqrt(et))^2 + (5./et)^2))"),
14  eta = cms.string("sqrt(0.008^2 + (1.5/et)^2)"),
15  phi = cms.string("sqrt(0.008^2 + (2.6/et)^2)"),
16  ),
17  ),
18 
22  constraints = cms.vdouble(0)
23 )