CMS 3D CMS Logo

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