CMS 3D CMS Logo

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