CMS 3D CMS Logo

SiStripLorentzAngleFakeESSource_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 siStripLorentzAngleFakeESSource = cms.ESSource("SiStripLorentzAngleFakeESSource",
4  appendToDataLabel = cms.string(''),
5 
6  # Three possible generations:
7  # - give two values = (min,max) -> uniform distribution
8  # - give one value and PerCent_Err != 0 -> gaussian distribution
9  # - either give two equal values or a single value (pass an empty max vector) -> fixed value
10 
11  # TIB min and max
12  TIB_EstimatedValuesMin = cms.vdouble(0.014, 0.014, 0.014, 0.014),
13  TIB_EstimatedValuesMax = cms.vdouble(),
14  # TIB errors
15  TIB_PerCent_Errs = cms.vdouble(0., 0., 0., 0.),
16  # TOB min and max
17  TOB_EstimatedValuesMin = cms.vdouble(0.021, 0.021, 0.021, 0.021, 0.021, 0.021),
18  TOB_EstimatedValuesMax = cms.vdouble(0.021, 0.021, 0.021, 0.021, 0.021, 0.021),
19  # TOB errors
20  TOB_PerCent_Errs = cms.vdouble(0., 0., 0., 0., 0., 0.),
21  )