Back to home page

Project CMSSW displayed by LXR

 
 

    


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                                                    # print output
0014                                                    #   0 std::cout
0015                                                    #   1 LogTrace
0016                                                    #   2 LogVerbatim
0017                                                    #   3 LogInfo
0018                                                    PrintOutput=cms.untracked.int32(3)
0019 )
0020