Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:20:02

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 l1GtTrigReport = cms.EDAnalyzer("L1GtTrigReport",
0004                                 
0005     # boolean flag to select the input record
0006     # if true, it will use L1GlobalTriggerRecord 
0007     UseL1GlobalTriggerRecord = cms.bool(False),
0008 
0009     # input tag for GT record: 
0010     #   GT emulator:    gtDigis (DAQ record)
0011     #   GT unpacker:    gtDigis (DAQ record)
0012     #   GT lite record: l1GtRecord 
0013     L1GtRecordInputTag = cms.InputTag("gtDigis"),
0014 
0015     # print verbosity
0016     #   Level 0 Physics Partition:  TriggerKey, AlgorithmKey, Passed, Rejected, Error
0017     #   Level 1 Physics Partition:  Level 0 + PrescaleFactors + Mask
0018     #   Level 2 Physics Partition:  Level 0, Efficiency
0019     #
0020     #   Level 10 Physics Partition: TriggerKey, AlgorithmKey, PrescaleFactors
0021     #                               Before masks: Passed, Rejected, 
0022     #                               Mask
0023     #                               After masks:  Passed, Rejected,
0024     #                               Error
0025     #
0026     #   Level 100 All Partitions:   TriggerKey, AlgorithmKey, Passed, Rejected, Error
0027     #   Level 101 All Partitions:   Level 100 + PrescaleFactors + Mask
0028     #   ... 
0029     PrintVerbosity = cms.untracked.int32(10),
0030     
0031     # print output
0032     #   0 std::cout
0033     #   1 LogTrace
0034     #   2 LogVerbatim
0035     #   3 LogInfo
0036     PrintOutput = cms.untracked.int32(3)
0037     
0038 )
0039 
0040