CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
hltLevel1GTSeed_cfi.py
Go to the documentation of this file.
2 
3 hltLevel1GTSeed = cms.EDFilter("HLTLevel1GTSeed",
4  # default: true
5  # seeding done via L1 trigger object maps, with objects that fired
6  # only objects from the central BxInEvent (L1A) are used
7  # if false:
8  # seeding is done ignoring if a L1 object fired or not,
9  # adding all L1EXtra objects corresponding to the object types
10  # used in all conditions from the algorithms in logical expression
11  # for a given number of BxInEvent
12  L1UseL1TriggerObjectMaps = cms.bool(True),
13  #
14  # option used forL1UseL1TriggerObjectMaps = False only
15  # number of BxInEvent: 1: L1A=0; 3: -1, L1A=0, 1; 5: -2, -1, L1A=0, 1, 2
16  L1NrBxInEvent = cms.int32(3),
17  #
18  # seeding done via technical trigger bits, if value is "true";
19  # default: false (seeding via physics algorithms)
20  #
21  L1TechTriggerSeeding = cms.bool(False),
22  #
23  # seeding done with aliases for physics algorithms
24  L1UseAliasesForSeeding = cms.bool(True),
25  #
26  # logical expression for the required L1 algorithms;
27  # the algorithms are specified by name
28  # allowed operators: "AND", "OR", "NOT", "(", ")"
29  #
30  # by convention, "L1GlobalDecision" logical expression means global decision
31  #
32  L1SeedsLogicalExpression = cms.string(''),
33  #
34  # InputTag for the L1 Global Trigger DAQ readout record
35  # GT Emulator = gtDigis
36  # GT Unpacker = l1GtUnpack
37  #
38  # cloned GT unpacker in HLT = gtDigis
39  #
40  L1GtReadoutRecordTag = cms.InputTag("gtDigis"),
41  #
42  # InputTag for L1 Global Trigger object maps
43  # only the emulator produces the object maps
44  # GT Emulator = gtDigis
45  #
46  # cloned GT emulator in HLT = l1GtObjectMap
47  #
48  L1GtObjectMapTag = cms.InputTag("l1GtObjectMap"),
49  #
50  # InputTag for L1 particle collections (except muon)
51  # L1 Extra = l1extraParticles
52  #
53  L1CollectionsTag = cms.InputTag("l1extraParticles"),
54  #
55  # InputTag for L1 muon collection
56  L1MuonCollectionTag = cms.InputTag("l1extraParticles"),
57  #
58  # saveTags for AOD book-keeping
59  saveTags = cms.untracked.bool(True)
60 )