Skip to content

Commit f1e79c2

Browse files
committed
Improve TkAl Offline DQM:
- change source collections for ALCARECOTkAlHLTTracksZMuMu and ALCARECOTkAlHLTTracks - fill invariant mass plots for resonance-based ALCARECO producers - add DiMuon Vertex and DiMuon Bias monitoring to ALCARECOTkAlHLTTracksZMuMu - adjust binnings and pT max for ALCARECOTkAlHLTTracksZMuMu
1 parent 639c551 commit f1e79c2

File tree

1 file changed

+27
-5
lines changed

1 file changed

+27
-5
lines changed

DQMOffline/Alignment/python/ALCARECOTkAlDQM_cff.py

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,7 @@
384384

385385
ALCARECOTkAlHLTTracksTkAlDQM = ALCARECOTkAlZMuMuTkAlDQM.clone(
386386
#names and desigantions
387+
ReferenceTrackProducer= "hltMergedTracks",
387388
TrackProducer = 'ALCARECO'+__selectionName,
388389
AlgoName = 'ALCARECO'+__selectionName,
389390
FolderName = "AlCaReco/"+__selectionName,
@@ -416,18 +417,33 @@
416417

417418
ALCARECOTkAlHLTTracksZMuMuTkAlDQM = ALCARECOTkAlZMuMuTkAlDQM.clone(
418419
#names and desigantions
420+
ReferenceTrackProducer= "hltMergedTracks",
419421
TrackProducer = 'ALCARECO'+__selectionName,
420422
AlgoName = 'ALCARECO'+__selectionName,
421423
FolderName = "AlCaReco/"+__selectionName,
422424
# margins and settings
423-
fillInvariantMass = False,
424-
TrackPtMax = 30,
425+
fillInvariantMass = True,
426+
MassBin = 80,
427+
MassMin = 80.0,
428+
MassMax = 120.0,
429+
TrackPtMax = 100,
425430
SumChargeBin = 101,
426431
SumChargeMin = -50.5,
427432
SumChargeMax = 50.5
428433
)
429434

430-
ALCARECOTkAlHLTTracksZMuMuDQM = cms.Sequence( ALCARECOTkAlHLTTracksZMuMuTrackingDQM + ALCARECOTkAlHLTTracksZMuMuTkAlDQM )
435+
ALCARECOTkAlHLTTracksZMuMuVtxDQM = ALCARECOTkAlDiMuonAndVertexVtxDQM.clone(
436+
muonTracks = 'ALCARECO'+__selectionName,
437+
vertices = 'hltPixelVertices',
438+
FolderName = "AlCaReco/"+__selectionName,
439+
)
440+
441+
ALCARECOTkAlHLTTracksZMuMuMassBiasDQM = ALCARECOTkAlDiMuonMassBiasDQM.clone(
442+
muonTracks = 'ALCARECO'+__selectionName,
443+
FolderName = "AlCaReco/"+__selectionName,
444+
)
445+
446+
ALCARECOTkAlHLTTracksZMuMuDQM = cms.Sequence( ALCARECOTkAlHLTTracksZMuMuTrackingDQM + ALCARECOTkAlHLTTracksZMuMuTkAlDQM + ALCARECOTkAlHLTTracksZMuMuVtxDQM + ALCARECOTkAlHLTTracksZMuMuMassBiasDQM)
431447

432448
########################################################
433449
#############--- TkAlKshorts ---#######################
@@ -456,7 +472,10 @@
456472
AlgoName = 'ALCARECO'+__selectionName,
457473
FolderName = "AlCaReco/"+__selectionName,
458474
# margins and settings
459-
fillInvariantMass = False,
475+
fillInvariantMass = True,
476+
MassBin = 100,
477+
MassMin = 0.4,
478+
MassMax = 0.6,
460479
TrackPtMax = 30,
461480
SumChargeBin = 101,
462481
SumChargeMin = -50.5,
@@ -501,7 +520,10 @@
501520
AlgoName = 'ALCARECO'+__selectionName,
502521
FolderName = "AlCaReco/"+__selectionName,
503522
# margins and settings
504-
fillInvariantMass = False,
523+
fillInvariantMass = True,
524+
MassBin = 100,
525+
MassMin = 1.050,
526+
MassMax = 1.250,
505527
TrackPtMax = 30,
506528
SumChargeBin = 101,
507529
SumChargeMin = -50.5,

0 commit comments

Comments
 (0)