CMS 3D CMS Logo

L1TGCTClient_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 l1tGctClient = DQMEDHarvester("L1TGCTClient",
5  prescaleLS = cms.untracked.int32(-1),
6  monitorDir = cms.untracked.string('L1T/L1TGCT'),
7  prescaleEvt = cms.untracked.int32(1),
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  stage1_layer2_=cms.untracked.bool(False)
13 )
14 
15