CMS 3D CMS Logo

L1TRPCTFClient_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 l1tRpctfClient = DQMEDHarvester("L1TRPCTFClient",
5 input_dir = cms.untracked.string('L1T/L1TRPCTF'),
6  prescaleEvt = cms.untracked.int32(1),
7  verbose = cms.untracked.bool(False),
8  output_dir = cms.untracked.string('L1T/L1TRPCTF/Client'),
9  runInEventLoop=cms.untracked.bool(False),
10  runInEndLumi=cms.untracked.bool(True),
11  runInEndRun=cms.untracked.bool(True),
12  runInEndJob=cms.untracked.bool(False)
13 )
14 
15