CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/L1Trigger/GlobalTriggerAnalyzer/python/l1GtAnalyzer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 L1GtAnalyzer = cms.EDAnalyzer("L1GtAnalyzer",
00004 
00005     # input tag for GT readout collection: 
00006     #     GT emulator, GT unpacker:  gtDigis  
00007     L1GtDaqReadoutRecordInputTag = cms.InputTag("gtDigis"),
00008     
00009     # input tags for GT lite record
00010     #     L1 GT lite record producer:  l1GtRecord  
00011     L1GtRecordInputTag = cms.InputTag("l1GtRecord"),
00012     
00013     # input tag for GT object map collection
00014     #     only the L1 GT emulator produces it,
00015     #     no map collection is produced by hardware
00016     
00017     #     GT emulator:  gtDigis  
00018     L1GtObjectMapTag = cms.InputTag("hltL1GtObjectMap"),
00019 
00020     # input tag for GMT readout collection: 
00021     #     gmtDigis = GMT emulator
00022     #     gtDigis  = GT unpacker (common GT/GMT unpacker)
00023     L1GmtInputTag = cms.InputTag("gmtDigis"),
00024     
00025     # input tag for l1GtTriggerMenuLite
00026     L1GtTmLInputTag = cms.InputTag("l1GtTriggerMenuLite"),
00027     
00028     # input tag for input tag for ConditionInEdm products
00029     CondInEdmInputTag = cms.InputTag("conditionsInEdm"),
00030 
00031     # an algorithm and a condition in that algorithm to test the object maps, a bit number
00032     AlgorithmName = cms.string('L1_DoubleJet50_ETM20'),
00033     ConditionName = cms.string('DoubleTauJet50_2'),
00034     BitNumber = cms.uint32(0),
00035     
00036     # select the L1 configuration use: 0, 100000, 200000
00037     L1GtUtilsConfiguration = cms.uint32(0),
00038     
00039     # if true, use methods in L1GtUtils with the input tag for l1GtTriggerMenuLite
00040     # from provenance
00041     L1GtTmLInputTagProv = cms.bool(True)
00042     
00043 )
00044 
00045