00001 import FWCore.ParameterSet.Config as cms 00002 00003 hltLevel1GTSeed = cms.EDFilter("HLTLevel1GTSeed", 00004 # logical expression for the required L1 algorithms; 00005 # the algorithms are specified by name 00006 # allowed operators: "AND", "OR", "NOT", "(", ")" 00007 # 00008 # by convention, "L1GlobalDecision" logical expression means global decision 00009 # 00010 L1SeedsLogicalExpression = cms.string(''), 00011 # InputTag for L1 muon collection 00012 L1MuonCollectionTag = cms.InputTag("l1extraParticles"), 00013 # InputTag for the L1 Global Trigger DAQ readout record 00014 # GT Emulator = gtDigis 00015 # GT Unpacker = l1GtUnpack 00016 # 00017 # cloned GT unpacker in HLT = gtDigis 00018 L1GtReadoutRecordTag = cms.InputTag("gtDigis"), 00019 # InputTag for L1 particle collections (except muon) 00020 # L1 Extra = l1extraParticles 00021 # 00022 L1CollectionsTag = cms.InputTag("l1extraParticles"), 00023 # InputTag for L1 Global Trigger object maps 00024 # only the emulator produces the object maps 00025 # GT Emulator = gtDigis 00026 # 00027 # cloned GT emulator in HLT = l1GtObjectMap 00028 # 00029 L1GtObjectMapTag = cms.InputTag("l1GtObjectMap"), 00030 # seeding done via technical trigger bits, if value is "true"; 00031 # default: false (seeding via physics algorithms) 00032 L1TechTriggerSeeding = cms.bool(False), 00033 # saveTags for AOD book-keeping 00034 saveTags = cms.untracked.bool(True) 00035 )