File indexing completed on 2024-04-06 12:22:18
0001 import FWCore.ParameterSet.Config as cms
0002
0003 l1GtPrescaleFactorsAndMasksTester = cms.EDAnalyzer("L1GtPrescaleFactorsAndMasksTester",
0004 TesterPrescaleFactors=cms.bool(True),
0005 TesterTriggerMask=cms.bool(True),
0006 TesterTriggerVetoMask=cms.bool(True),
0007 RetrieveInBeginRun=cms.bool(True),
0008 RetrieveInBeginLuminosityBlock=cms.bool(False),
0009 RetrieveInAnalyze=cms.bool(False),
0010 PrintInBeginRun=cms.bool(True),
0011 PrintInBeginLuminosityBlock=cms.bool(False),
0012 PrintInAnalyze=cms.bool(False),
0013
0014
0015
0016
0017
0018 PrintOutput=cms.untracked.int32(3)
0019 )
0020