1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
|
import FWCore.ParameterSet.Config as cms
from PhysicsTools.NanoAOD.common_cff import *
from PhysicsTools.NanoAOD.l1trig_cff import *
#### GTT Vertex
vtxTable = cms.EDProducer(
"SimpleL1VtxWordCandidateFlatTableProducer", ## note the use of a dedicated table producer which is defined in the plugins/L1TableProducer.cc
src = cms.InputTag('l1tVertexFinderEmulator','L1VerticesEmulation'),
cut = cms.string(""),
name = cms.string("L1Vertex"),
doc = cms.string("GTT Vertices"),
singleton = cms.bool(False), # the number of entries is variable
variables = cms.PSet(
z0 = Var("z0()",float, doc = "primary vertex position z coordinate"),
sumPt = Var("pt()",float, doc = "sum pt of tracks"),
hwValid = Var("validBits()", bool, doc = "hardware vertex valid bit"),
hwPt = Var("ptBits()", "uint", doc = "hardware pt"),
hwZ0 = Var("z0Bits()", "uint", doc = "hardware z0 vertex position"),
hwQual = Var("qualityBits()", "uint", doc = "hardware qual"), # Currently not filled in emulation or firmware
hwNTracksIn = Var("multiplicityBits()", "uint", doc = "hardware track multiplicity in the vertex"), # Currently not filled in emulation or firmware
hwNTracksOut = Var("inverseMultiplicityBits()", "uint", doc = "hardware track multiplicity out of the vertex"), # Currently not filled in emulation or firmware
# hwWordA = Var("vertexWord().range(31, 0).to_uint()", "uint", doc = "hardware vertex word first 32 bits"),
# hwWordB = Var("vertexWord().range(63, 32).to_uint()", "uint", doc = "hardware vertex word second 32 bits"),
)
)
gttTrackJetsTable = cms.EDProducer(
"SimpleL1TkJetWordCandidateFlatTableProducer",
src = cms.InputTag("l1tTrackJetsEmulation","L1TrackJets"),
name = cms.string("L1TrackJet"),
doc = cms.string("GTT Track Jets"),
singleton = cms.bool(False), # the number of entries is variable
variables = cms.PSet(
pt = Var("pt()", float, doc="pt"),
eta = Var("glbeta()", float, doc="eta"),
phi = Var("glbphi()", float, doc="phi"),
z0 = Var("z0()", float, doc="z0"),
hwPt = Var("ptBits()", "uint", doc="hardware pt"),
hwEta = Var("glbEtaBits()", "uint", doc="hardware eta"),
hwPhi = Var("glbPhiBits()", "uint", doc="hardware eta"),
hwZ0 = Var("z0Bits()", "uint", doc="hardware z0"),
hwNTracks = Var("ntBits()", "uint", doc="hardware number of tracks"),
hwNDisplacedTracks = Var("xtBits()", "uint", doc="hardware number of tracks"),
hwDisplacedFlagBits = Var("dispFlagBits()", "uint", doc="hardware displaced flag bits"),
# hwWordA = Var("tkJetWord().range(31, 0).to_uint()", "uint", doc = "hardware track jet word first 32 bits"),
# hwWordB = Var("tkJetWord().range(63, 32).to_uint()", "uint", doc = "hardware track jet word second 32 bits"),
# hwWordC = Var("tkJetWord().range(95, 64).to_uint()", "uint", doc = "hardware track jet word third 32 bits"),
# hwWordD = Var("tkJetWord().range(127, 96).to_uint()", "uint", doc = "hardware track jet word fourth 32 bits"),
)
)
gttExtTrackJetsTable = gttTrackJetsTable.clone(
src = cms.InputTag("l1tTrackJetsExtendedEmulation", "L1TrackJetsExtended"),
name = cms.string("L1ExtTrackJet"),
doc = cms.string("GTT Extended Track Jets"),
)
gttTripletTable = cms.EDProducer(
"SimpleTkTripletWordCandidateFlatTableProducer",
src = cms.InputTag("l1tTrackTripletEmulation","L1TrackTripletWord"),
name = cms.string("L1TrackTripletWord"),
doc = cms.string("GTT Triplets"),
singleton = cms.bool(False), # the number of entries is variable
variables = cms.PSet(
valid = Var("valid()", float, doc="valid"),
pt = Var("pt()", float, doc="pt"),
eta = Var("glbeta()", float, doc="eta"),
phi = Var("glbphi()", float, doc="phi"),
mass = Var("mass()", float, doc="mass"),
charge = Var("charge()", float, doc="charge"),
ditrackMinMass = Var("ditrackMinMass()", float, doc="ditrackMinMass"),
ditrackMaxMass = Var("ditrackMaxMass()", float, doc="ditrackMaxMass"),
ditrackMinZ0 = Var("ditrackMinZ0()", float, doc="ditrackMinZ0"),
ditrackMaxZ0 = Var("ditrackMaxZ0()", float, doc="ditrackMaxZ0"),
hwValid = Var("validBits()", "uint", doc="hardware valid"),
hwPt = Var("ptBits()", "uint", doc="hardware pt"),
hwEta = Var("glbEtaBits()", "uint", doc="hardware eta"),
hwPhi = Var("glbPhiBits()", "uint", doc="hardware eta"),
hwMass = Var("massBits()", "uint", doc="hardware mass"),
hwCharge = Var("chargeBits()", "uint", doc="hardware charge"),
hwDitrackMinMass = Var("ditrackMinMassBits()", "uint", doc="hardware DitrackMinMass"),
hwDitrackMaxMass = Var("ditrackMaxMassBits()", "uint", doc="hardware DitrackMaxMass"),
hwDitrackMinZ0 = Var("ditrackMinZ0Bits()", "uint", doc="hardware DitrackMinZ0"),
hwDitrackMaxZ0 = Var("ditrackMaxZ0Bits()", "uint", doc="hardware DitrackMaxZ0")
)
)
gttEtSumTable = cms.EDProducer(
"SimpleTriggerL1CandidateFlatTableProducer",
src = cms.InputTag("l1tTrackerEmuEtMiss", "L1TrackerEmuEtMiss"),
name = cms.string("L1TrackMET"),
doc = cms.string("GTT Track MET"),
singleton = cms.bool(True), # the number of entries is variable
variables = cms.PSet(
# as in https://github.com/cms-l1t-offline/cmssw/blob/phase2-l1t-integration-14_0_0_pre3/L1Trigger/L1TTrackMatch/interface/L1TkEtMissEmuAlgo.h#L50
pt = Var("et", float, doc = "Track MET"),
# as in https://github.com/cms-l1t-offline/cmssw/blob/phase2-l1t-integration-14_0_0_pre3/L1Trigger/L1TTrackMatch/interface/L1TkEtMissEmuAlgo.h#L51
phi = Var("hwPhi() * 0.00076699039", float, doc = "Track MET Phi"),
hwValid = Var("hwQual() > 0", bool, doc = "hardware Missing Et valid bit"),
hwPt = Var("hwPt()", "int", doc = "hardware pt track MET"),
hwPhi = Var("hwPhi()", "int", doc = "hardware Missing Et phi"),
)
)
gttHtSumTable = cms.EDProducer(
"SimpleTriggerL1CandidateFlatTableProducer",
src = cms.InputTag("l1tTrackerEmuHTMiss", "L1TrackerEmuHTMiss"),
name = cms.string("L1TrackHT"),
doc = cms.string("GTT Track Missing HT"),
singleton = cms.bool(True), # the number of entries is variable
variables = cms.PSet(
# as in https://github.com/artlbv/cmssw/blob/from-CMSSW_12_5_2_patch1/L1Trigger/L1TNtuples/src/L1AnalysisPhaseIIStep1.cc#L623
mht = Var(f"p4().energy()", float, doc="Track MHT vector sum"),
# as in https://github.com/cms-l1t-offline/cmssw/blob/phase2-l1t-integration-14_0_0_pre3/L1Trigger/L1TTrackMatch/interface/L1TkHTMissEmulatorProducer.h#L70
phi = Var("?hwPhi * 0.00076699039 > 3.1415926535?hwPhi * 0.00076699039 - 2 * 3.1415926535:hwPhi * 0.00076699039", float, doc = "Track MHT Phi"), # Fix phi-wraparound issue
# as in https://github.com/cms-l1t-offline/cmssw/blob/phase2-l1t-integration-14_0_0_pre3/L1Trigger/L1TTrackMatch/interface/L1TkHTMissEmulatorProducer.h#L65
ht = Var("hwPt() * 0.03125", float, doc = "Track HT scalar sum"),
hwValid = Var("hwQual() > 0", bool, doc = "hardware Track MHT valid bit"),
hwPt = Var("hwPt()", "int", doc = "hardware Track HT scalar sum"),
hwPhi = Var("hwPhi()", "int", doc = "hardware Track MHT phi"),
)
)
gttExtHtSumTable = gttHtSumTable.clone(
src = cms.InputTag("l1tTrackerEmuHTMissExtended","L1TrackerEmuHTMissExtended"),
name = cms.string("L1ExtTrackHT"),
doc = cms.string("GTT Extended Track Missing HT"),
)
### Store Primary Vertex only (first vertex)
pvtxTable = vtxTable.clone(
maxLen = cms.uint32(1),
name = cms.string("L1PV"),
doc = cms.string("GTT Leading Primary Vertex"),
)
#### EG
tkPhotonTable = cms.EDProducer(
"SimpleTriggerL1TkEmFlatTableProducer",
src = cms.InputTag('l1tLayer2EG','L1CtTkEm'),
cut = cms.string("pt > 5"),
name = cms.string("L1tkPhoton"),
doc = cms.string("Tk Photons (EM)"),
# singleton = cms.bool(False), # the number of entries is variable
variables = cms.PSet(
l1ObjVars,
relIso = Var("trkIsol", float, doc = "relative Isolation based on trkIsol variable"),
# tkIso = Var("trkIsol", float), ## use above instead to be consistent with the GT and with the tkEle
# tkIsoPV = Var("trkIsolPV", float),
# pfIso = Var("pfIsol", float),
# puppiIso = Var("puppiIsol", float),
## quality WPs, see https://twiki.cern.ch/twiki/bin/view/CMSPublic/SWGuidePhysicsCutParser#Suppported_operators_and_functio
saId = Var("test_bit(hwQual(),0)", bool, doc = "standalone ID, bit 0 of hwQual"),
eleId = Var("test_bit(hwQual(),1)", bool, doc = "electron ID, bit 1 of hwQual"),
phoId = Var("test_bit(hwQual(),2)", bool, doc = "photon ID, bit 2 of hwQual"),
)
)
tkEleTable = cms.EDProducer(
"SimpleTriggerL1TkElectronFlatTableProducer", #TkElectron includes trkzVtx
src = cms.InputTag('l1tLayer2EG','L1CtTkElectron'),
name = cms.string("L1tkElectron"),
doc = cms.string("Tk Electrons"),
cut = cms.string("pt > 5"),
# singleton = cms.bool(False), # the number of entries is variable
variables = cms.PSet(
tkPhotonTable.variables.clone(),
z0 = Var("trkzVtx", float, "track vertex z0"),
charge = Var("charge", int, doc="charge"),
)
)
## additional variables that are not used in the menu/GT
## from https://github.com/p2l1pfp/FastPUPPI/blob/12_5_X/NtupleProducer/python/runPerformanceNTuple.py#L499C8-L501C83
# tkEleTable.variables.tkEta = Var("trkPtr.eta", float,precision=8)
# tkEleTable.variables.tkPhi = Var("trkPtr.phi", float,precision=8)
# tkEleTable.variables.tkPt = Var("trkPtr.momentum.perp", float,precision=8)
# merge EG
staEGmerged = cms.EDProducer("CandViewMerger",
src = cms.VInputTag(
cms.InputTag('l1tPhase2L1CaloEGammaEmulator','GCTEGammas'),
cms.InputTag('l1tLayer2EG','L1CtEgEE'),
)
)
staEGTable = cms.EDProducer(
"SimpleCandidateFlatTableProducer",
src = cms.InputTag("staEGmerged"),
cut = cms.string("pt > 5"),
name = cms.string("L1EG"),
doc = cms.string("standalone EG merged endcap and barrel"),
# singleton = cms.bool(False), # the number of entries is variable
variables = cms.PSet(
l1P3Vars,
### FIXME
### NOTE THE BELOW DOES NOT WORK FOR NOW
### This only works when using each collection barrel/endcap separately with the SimpleTriggerL1EGFlatTableProducer -> Need to fix this !
# hwQual = Var("hwQual",int,doc="hardware qual"),
## quality WPs, see https://twiki.cern.ch/twiki/bin/view/CMSPublic/SWGuidePhysicsCutParser#Suppported_operators_and_functio
# saId = Var("test_bit(hwQual(),0)", bool),
# eleId = Var("test_bit(hwQual(),1)", bool),
# phoId = Var("test_bit(hwQual(),2)", bool),
)
)
staEGebTable = cms.EDProducer(
"SimpleTriggerL1EGFlatTableProducer",
src = cms.InputTag('l1tPhase2L1CaloEGammaEmulator','GCTEGammas'),
cut = cms.string("pt > 5"),
name = cms.string("L1EGbarrel"),
doc = cms.string("standalone EG barrel"),
# singleton = cms.bool(False), # the number of entries is variable
variables = cms.PSet(
l1P3Vars,
### FIXME
### This only works when using each collection barrel/endcap separately with the SimpleTriggerL1EGFlatTableProducer -> Need to fix this !
hwQual = Var("hwQual",int,doc="hardware qual"),
# quality WPs, see https://twiki.cern.ch/twiki/bin/view/CMSPublic/SWGuidePhysicsCutParser#Suppported_operators_and_functio
saId = Var("test_bit(hwQual(),0)", bool, doc = "standalone ID, bit 0 of hwQual"),
eleId = Var("test_bit(hwQual(),1)", bool, doc = "electron ID, bit 1 of hwQual"),
phoId = Var("test_bit(hwQual(),2)", bool, doc = "photon ID, bit 2 of hwQual"),
)
)
staEGeeTable = staEGebTable.clone(
src = cms.InputTag('l1tLayer2EG','L1CtEgEE'),
name = cms.string("L1EGendcap"),
doc = cms.string("standalone EG endcap"),
)
### Muons
staMuTable = cms.EDProducer(
"SimpleTriggerL1SAMuonFlatTableProducer",
src = cms.InputTag('l1tSAMuonsGmt','prompt'),
name = cms.string("L1gmtMuon"),
doc = cms.string("GMT standalone Muons, origin: GMT"),
cut = cms.string(""),
# singleton = cms.bool(False), # the number of entries is variable
variables = cms.PSet(
# l1ObjVars,
### WARNING : the pt/eta/phi/vz methods give rounded results -> use the "physical" accessors
# vz = Var("vz",float),
chargeNoPh = Var("charge", int, doc="charge id"),
## physical values
charge = Var("phCharge", int, doc="charge id"),
pt = Var("phPt()",float),
eta = Var("phEta()",float),
phi = Var("phPhi()",float),
z0 = Var("phZ0()",float),
d0 = Var("phD0()",float),
# beta = Var("phBeta()",float), # does not exist
## hw Values
hwPt = Var("hwPt()",int,doc="hardware pt"),
hwEta = Var("hwEta()",int,doc="hardware eta"),
hwPhi = Var("hwPhi()",int,doc="hardware phi"),
hwQual = Var("hwQual()",int,doc="hardware qual"),
hwIso = Var("hwIso()",int,doc="hardware iso"),
hwBeta = Var("hwBeta()",int,doc="hardware beta"),
# ## more info
# nStubs = Var("stubs().size()",int,doc="number of stubs"),
)
)
staDisplacedMuTable = staMuTable.clone(
src = cms.InputTag("l1tSAMuonsGmt", "displaced"),
name = cms.string("L1gmtDispMuon"),
doc = cms.string("GMT standalone displaced Muons, origin: GMT"),
)
gmtTkMuTable = cms.EDProducer(
"SimpleTriggerL1TrackerMuonFlatTableProducer",
src = cms.InputTag('l1tTkMuonsGmt'),
name = cms.string("L1gmtTkMuon"),
doc = cms.string("GMT Tk Muons, origin: GMT"),
cut = cms.string(""),
# singleton = cms.bool(False), # the number of entries is variable
variables = cms.PSet(
staMuTable.variables.clone(),
## tkMu specific
vlooseId = Var("test_bit(hwQual(),0)", bool, doc = "VLoose ID, bit 0 of hwQual"),
looseId = Var("test_bit(hwQual(),1)", bool, doc = "Loose ID, bit 1 of hwQual"),
mediumId = Var("test_bit(hwQual(),2)", bool, doc = "Medium ID, bit 2 of hwQual"),
tightId = Var("test_bit(hwQual(),3)", bool, doc = "Tight ID, bit 3 of hwQual")
# ## more info
# nStubs = Var("stubs().size()",int,doc="number of stubs"),
)
)
### Standalone Muon from GMT, before ghost busting
KMTFpromptMuTable = staMuTable.clone(
src = cms.InputTag("l1tKMTFMuonsGmt", "prompt"),
name = cms.string("L1MuonKMTF"),
doc = cms.string("GMT KMTF prompt Muons, origin: GMT"),
)
KMTFDisplaceMuTable = staMuTable.clone(
src = cms.InputTag("l1tKMTFMuonsGmt", "displaced"),
name = cms.string("L1DispMuonKMTF"),
doc = cms.string("GMT KMTF Displaced Muons, origin: GMT"),
)
OMTFpromptMuTable = staMuTable.clone(
src = cms.InputTag("l1tFwdMuonsGmt", "prompt"),
cut = cms.string("tfType() == 1 | tfType() == 2"), #tftype::omtf_neg, tftype::omtf_pos
name = cms.string("L1MuonOMTF"),
doc = cms.string("GMT OMTF prompt Muons, origin: GMT"),
)
OMTFDisplaceMuTable = staMuTable.clone(
src = cms.InputTag("l1tFwdMuonsGmt", "displaced"),
cut = cms.string("tfType() == 1 | tfType() == 2"), #tftype::omtf_neg, tftype::omtf_pos
name = cms.string("L1DispMuonOMTF"),
doc = cms.string("GMT OMTF displaced Muons, origin: GMT"),
)
EMTFpromptMuTable = staMuTable.clone(
src = cms.InputTag("l1tFwdMuonsGmt", "prompt"),
cut = cms.string("tfType() == 3 | tfType() == 4"), #tftype::EMTF_neg, tftype::EMTF_pos
name = cms.string("L1MuonEMTF"),
doc = cms.string("GMT EMTF prompt Muons, origin: GMT"),
)
EMTFDisplaceMuTable = staMuTable.clone(
src = cms.InputTag("l1tFwdMuonsGmt", "displaced"),
cut = cms.string("tfType() == 3 | tfType() == 4"), #tftype::EMTF_neg, tftype::EMTF_pos
name = cms.string("L1DispMuonEMTF"),
doc = cms.string("GMT EMTF displaced Muons, origin: GMT"),
)
### Jets
jetTable = cms.EDProducer(
"SimpleCandidateFlatTableProducer",
src = cms.InputTag('__src__'),
cut = cms.string(""),
name = cms.string("__name__"),
doc = cms.string("__Template Jet Table__"),
singleton = cms.bool(False), # the number of entries is variable
variables = cms.PSet(
l1P3Vars,
et = Var("et",float),
# z0 = Var("vz", float, "vertex z0"), ## empty
)
)
pfJetTable = cms.EDProducer(
"SimpleTriggerL1PFJetFlatTableProducer",
src = cms.InputTag('__src__'),
cut = cms.string(""),
name = cms.string("__name__"),
doc = cms.string("__Template PFJet Table__"),
singleton = cms.bool(False), # the number of entries is variable
variables = cms.PSet(
l1P3Vars,
et = Var("et",float),
# z0 = Var("vz", float, "vertex z0"), ## empty
)
)
sc4JetTable = pfJetTable.clone(
src = cms.InputTag('l1tSC4PFL1PuppiCorrectedEmulator'),
name = cms.string("L1puppiJetSC4"),
doc = cms.string("SeededCone 0.4 Puppi jet, origin: Correlator"),
)
sc8JetTable = pfJetTable.clone(
src = 'l1tSC8PFL1PuppiCorrectedEmulator',
name = "L1puppiJetSC8",
doc = "SeededCone 0.8 Puppi jet, origin: Correlator",
variables = cms.PSet(
pfJetTable.variables.clone(),
mass = Var("mass", float)
)
)
sc4ExtJetTable = pfJetTable.clone(
src = cms.InputTag('l1tSC4PFL1PuppiExtendedCorrectedEmulator'),
name = cms.string("L1puppiExtJetSC4"),
doc = cms.string("SeededCone 0.4 Puppi jet from extended Puppi, origin: Correlator"),
externalVariables = cms.PSet(
btagScore = ExtVar(cms.InputTag("l1tBJetProducerPuppiCorrectedEmulator", "L1PFBJets"),float, doc="NNBtag score"),
llpTagScore = ExtVar(cms.InputTag("l1tTOoLLiPProducerCorrectedEmulator", "L1PFLLPJets"),float, doc="NN LLP Tag score"),
),
)
sc4NGJetTable = pfJetTable.clone(
src = cms.InputTag('l1tSC4NGJetProducer', 'l1tSC4NGJets'),
name = cms.string("L1puppiJetSC4NG"),
doc = cms.string("NextGeneration SeededCone 0.4 Puppi jet with multi-class tagging, origin: Correlator"),
variables = cms.PSet(
l1P3Vars,
et = Var("et",float),
udsTagScore = Var('getTagScore("uds")', float),
gTagScore = Var('getTagScore("g")', float),
bTagScore = Var('getTagScore("b")', float),
cTagScore = Var('getTagScore("c")', float),
tau_pTagScore = Var('getTagScore("tau_p")', float),
tau_nTagScore = Var('getTagScore("tau_n")', float),
eTagScore = Var('getTagScore("e")', float),
muTagScore = Var('getTagScore("mu")', float),
)
)
histoJetTable = jetTable.clone(
src = cms.InputTag("l1tPhase1JetCalibrator9x9trimmed" , "Phase1L1TJetFromPfCandidates"),
name = cms.string("L1puppiJetHisto"),
doc = cms.string("Puppi Jets histogrammed 9x9, trimmed, origin: Correlator"),
)
caloJetTable = jetTable.clone(
src = cms.InputTag("l1tPhase2CaloJetEmulator","GCTJet"),
name = cms.string("L1caloJet"),
doc = cms.string("Calo Jets, origin: GCT"),
cut = cms.string("pt > 5"), ## increase this to save space
)
### SUMS
puppiMetTable = cms.EDProducer(
"SimpleCandidateFlatTableProducer",
src = cms.InputTag("l1tMETPFProducer",""),
name = cms.string("L1puppiMET"),
doc = cms.string("Puppi MET, origin: Correlator"),
singleton = cms.bool(True), # the number of entries is variable
variables = cms.PSet(
l1PtVars,
et = Var("et",float)
)
)
puppiMLMetTable = cms.EDProducer(
"SimpleCandidateFlatTableProducer",
src = cms.InputTag("l1tMETMLProducer",""),
name = cms.string("L1puppiMLMET"),
doc = cms.string("Puppi ML MET, origin: Correlator"),
singleton = cms.bool(True), # the number of entries is variable
variables = cms.PSet(
l1PtVars,
et = Var("et",float)
)
)
sc4SumsTable = cms.EDProducer(
"SimpleCandidateFlatTableProducer",
src = cms.InputTag("l1tSC4PFL1PuppiCorrectedEmulatorMHT",""),
name = cms.string("L1puppiJetSC4sums"),
doc = cms.string("HT and MHT from SeededCone Radius 0.8 jets; idx 0 is HT, idx 1 is MHT, origin: Correlator"),
singleton = cms.bool(False), # the number of entries is not variable
cut = cms.string(""),
variables = cms.PSet(
l1PtVars,
#ht = Var("pt[0]", float)
)
)
histoSumsTable = sc4SumsTable.clone(
src = cms.InputTag("l1tPhase1JetSumsProducer9x9trimmed","Sums"),
name = cms.string("L1puppiHistoJetSums"),
doc = cms.string("HT and MHT from histogrammed 9x9 jets, origin: Correlator"),
)
### Taus
caloTauTable = cms.EDProducer(
"SimpleTriggerL1CaloJetFlatTableProducer",
src = cms.InputTag("l1tPhase2CaloJetEmulator","GCTJet"),
cut = cms.string("pt > 5"),
name = cms.string("L1caloTau"),
doc = cms.string("Calo Taus"),
# singleton = cms.bool(False), # the number of entries is variable
variables = cms.PSet(
pt = Var("tauEt", float, precision=l1_float_precision_), # Define as pt in nano, as required by menu tools downstream
phi = Var("phi", float, precision=l1_float_precision_),
eta = Var("eta", float, precision=l1_float_precision_),
)
)
nnCaloTauTable = cms.EDProducer(
"SimpleTriggerL1CandidateFlatTableProducer",
src = cms.InputTag("l1tNNCaloTauEmulator","L1NNCaloTauCollectionBXV"),
cut = cms.string("pt > 5"),
name = cms.string("L1nnCaloTau"),
doc = cms.string("NN Calo Taus"),
singleton = cms.bool(False), # the number of entries is variable
variables = cms.PSet(
l1P3Vars,
hwQual = Var("hwQual",int,doc="Tau ID working point, 90% --> 3, 95% --> 2, 99% --> 1, anything else --> 0"),
hwIso = Var("hwIso",int,doc="Tau ID * 10E4")
)
)
nnPuppiTauTable = cms.EDProducer(
"SimpleTriggerL1PFTauFlatTableProducer",
src = cms.InputTag("l1tNNTauProducerPuppi","L1PFTausNN"),
cut = cms.string(""),
name = cms.string("L1nnPuppiTau"),
doc = cms.string("NN Puppi Taus"),
# singleton = cms.bool(False), # the number of entries is variable
variables = cms.PSet(
l1P3Vars,
charge = Var("charge", int),
z0 = Var("z0", float, "vertex z0"),
## copy paste from old menu ntuple https://github.com/artlbv/cmssw/blob/from-CMSSW_12_5_2_patch1/L1Trigger/L1TNtuples/src/L1AnalysisPhaseIIStep1.cc#L543C1-L555C1
chargedIso = Var("chargedIso", float),
fullIso = Var("fullIso", float),
id = Var("id", int),
passLooseNN = Var("passLooseNN", int),
passLoosePF = Var("passLoosePF", int),
passTightPF = Var("passTightPF", int),
passTightNN = Var("passTightNN", int),
passLooseNNMass = Var("passLooseNNMass", int),
passTightNNMass = Var("passTightNNMass", int),
passMass = Var("passMass", int),
dXY = Var("dxy", float),
)
)
hpsTauTable = cms.EDProducer(
"SimpleTriggerL1HPSPFTauFlatTableProducer",
src = cms.InputTag("l1tHPSPFTauProducerPuppi",""),
cut = cms.string(""),
name = cms.string("L1hpsTau"),
doc = cms.string("HPS Taus"),
singleton = cms.bool(False), # the number of entries is variable
variables = cms.PSet(
l1P3Vars
)
)
## L1 Objects
p2L1TablesTask = cms.Task(
## Muons
gmtTkMuTable,
staMuTable, staDisplacedMuTable,
# below not available in `RAW/DIGI/FEVTDEBUG` data tier, only when rerunning L1 at the same time
KMTFpromptMuTable,
KMTFDisplaceMuTable,
OMTFpromptMuTable,
OMTFDisplaceMuTable,
EMTFpromptMuTable,
EMTFDisplaceMuTable,
## EG
tkEleTable,
tkPhotonTable,
staEGmerged, staEGTable, ## Need to run merger before Table task! Stanalone EG – not in GT yet
staEGebTable, staEGeeTable,
# ## jets
sc4JetTable,
sc8JetTable,
sc4ExtJetTable,
sc4NGJetTable,
histoJetTable,
caloJetTable,
# ## sums
puppiMetTable,
puppiMLMetTable,
sc4SumsTable,
histoSumsTable,
# taus
caloTauTable,
nnCaloTauTable,
nnPuppiTauTable,
hpsTauTable,
# GTT
vtxTable,
pvtxTable,
gttTrackJetsTable,
gttExtTrackJetsTable,
gttTripletTable,
gttEtSumTable,
gttHtSumTable,
gttExtHtSumTable,
)
|