CMS 3D CMS Logo

L1TGMTClient_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
3 
4 l1tGmtClient = DQMEDHarvester("L1TGMTClient",
5  input_dir = cms.untracked.string('L1T/L1TGMT'),
6  monitorName = cms.untracked.string('L1T/L1TGMT'),
7  output_dir = cms.untracked.string('L1T/L1TGMT/Client'),
8  runInEventLoop=cms.untracked.bool(False),
9  runInEndLumi=cms.untracked.bool(True),
10  runInEndRun=cms.untracked.bool(True),
11  runInEndJob=cms.untracked.bool(False)
12 
13 )
14 
15