CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
LaserDQM_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 mon = cms.EDAnalyzer("LaserDQM",
4  SearchWindowPhiTEC = cms.untracked.double(0.05),
5  DigiProducersList = cms.VPSet(cms.PSet(
6  DigiLabel = cms.string('\0'),
7  DigiProducer = cms.string('siStripDigis')
8  )),
9  SearchWindowPhiTIB = cms.untracked.double(0.05),
10  SearchWindowZTOB = cms.untracked.double(1.0),
11  DebugLevel = cms.untracked.int32(3),
12  DQMFileName = cms.untracked.string('testDQM.root'),
13  SearchWindowZTIB = cms.untracked.double(1.0),
14  SearchWindowPhiTOB = cms.untracked.double(0.05)
15 )
16 
17