CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
l1GtTrigReport_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 l1GtTrigReport = cms.EDAnalyzer("L1GtTrigReport",
4 
5  # boolean flag to select the input record
6  # if true, it will use L1GlobalTriggerRecord
7  UseL1GlobalTriggerRecord = cms.bool(False),
8 
9  # input tag for GT record:
10  # GT emulator: gtDigis (DAQ record)
11  # GT unpacker: gtDigis (DAQ record)
12  # GT lite record: l1GtRecord
13  L1GtRecordInputTag = cms.InputTag("gtDigis"),
14 
15  # print verbosity
16  # Level 0 Physics Partition: TriggerKey, AlgorithmKey, Passed, Rejected, Error
17  # Level 1 Physics Partition: Level 0 + PrescaleFactors + Mask
18  # Level 2 Physics Partition: Level 0, Efficiency
19  #
20  # Level 10 Physics Partition: TriggerKey, AlgorithmKey, PrescaleFactors
21  # Before masks: Passed, Rejected,
22  # Mask
23  # After masks: Passed, Rejected,
24  # Error
25  #
26  # Level 100 All Partitions: TriggerKey, AlgorithmKey, Passed, Rejected, Error
27  # Level 101 All Partitions: Level 100 + PrescaleFactors + Mask
28  # ...
29  PrintVerbosity = cms.untracked.int32(10),
30 
31  # print output
32  # 0 std::cout
33  # 1 LogTrace
34  # 2 LogVerbatim
35  # 3 LogInfo
36  PrintOutput = cms.untracked.int32(3)
37 
38 )
39 
40