CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1TCSCTFClient_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 l1tCsctfClient = cms.EDAnalyzer("L1TCSCTFClient",
4  input_dir = cms.untracked.string('L1T/L1TCSCTF'),
5  prescaleLS = cms.untracked.int32(-1),
6  verbose = cms.untracked.bool(False),
7  prescaleEvt = cms.untracked.int32(500),
8  output_dir = cms.untracked.string('L1T/L1TCSCTF/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