CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripGainRandomCalculator_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 siStripGainRandomCalculator = cms.EDFilter("SiStripGainRandomCalculator",
4  MeanGain = cms.double(1.0),
5  printDebug = cms.untracked.bool(False),
6  IOVMode = cms.string('Run'),
7  Record = cms.string('SiStripApvGainRcd'),
8  doStoreOnDB = cms.bool(True),
9  SigmaGain = cms.double(0.0),
10  MinPositiveGain = cms.double(0.1),
11  SinceAppendMode = cms.bool(True)
12 )
13 
14