CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DQMFEDIntegrityClient_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 dqmFEDIntegrity = cms.EDAnalyzer("DQMFEDIntegrityClient",
4  fillInEventloop = cms.untracked.bool(True),
5  fillOnEndLumi = cms.untracked.bool(True),
6  fillOnEndRun = cms.untracked.bool(True),
7  fillOnEndJob = cms.untracked.bool(False),
8  moduleName = cms.untracked.string('FED'),
9  fedFolderName = cms.untracked.string('FEDIntegrity')
10  )
11 
12 dqmQTestDQMFED = cms.EDAnalyzer("QualityTester",
13  prescaleFactor = cms.untracked.int32(1),
14  qtList = cms.untracked.FileInPath('DQMServices/Components/data/DQMFEDQualityTests.xml'),
15  getQualityTestsFromFile = cms.untracked.bool(True),
16  qtestOnEndLumi = cms.untracked.bool(True),
17  qtestOnEndRun = cms.untracked.bool(True),
18  qtestOnEndJob = cms.untracked.bool(False)
19  )
20 
21 dqmFEDIntegrityClient = cms.Sequence(dqmFEDIntegrity*dqmQTestDQMFED)