Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:59:52

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 siStripLorentzAngleFakeESSource = cms.ESSource("SiStripLorentzAngleFakeESSource",
0004        appendToDataLabel = cms.string(''),
0005 
0006        # Three possible generations:
0007        # - give two values = (min,max)                                                -> uniform distribution
0008        # - give one value and PerCent_Err != 0                                        -> gaussian distribution
0009        # - either give two equal values or a single value (pass an empty max vector)  -> fixed value
0010        
0011        # TIB min and max
0012        TIB_EstimatedValuesMin = cms.vdouble(0.014, 0.014, 0.014, 0.014),
0013        TIB_EstimatedValuesMax = cms.vdouble(),
0014        # TIB errors
0015        TIB_PerCent_Errs       = cms.vdouble(0.,    0.,    0.,    0.),
0016        # TOB min and max
0017        TOB_EstimatedValuesMin = cms.vdouble(0.021, 0.021, 0.021, 0.021, 0.021, 0.021),
0018        TOB_EstimatedValuesMax = cms.vdouble(0.021, 0.021, 0.021, 0.021, 0.021, 0.021),
0019        # TOB errors
0020        TOB_PerCent_Errs       = cms.vdouble(0.,    0.,    0.,    0.,    0.,    0.),
0021    )