Skip to content

Commit ee7ee5a

Browse files
committed
Clean up associators and sequences for Offline muon validation
1 parent f4fc18d commit ee7ee5a

File tree

3 files changed

+205
-192
lines changed

3 files changed

+205
-192
lines changed

Validation/RecoMuon/python/MuonTrackValidator_cfi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333
UseAssociators = cms.bool(False),
3434
useGEMs = cms.bool(False),
3535
useME0 = cms.bool(False),
36-
associatormap = cms.VInputTag(cms.InputTag("tpToMuonTrackAssociation")),
36+
associatormap = cms.VInputTag(cms.InputTag("tpToGlbMuonAssociation")),
3737
#
3838
# BiDirectional Logic for RecoToSim association corrects the Fake rates (counting ghosts and split tracks as fakes)
3939
# setting it to False the ghost and split tracks are counted as good ones
4040
# the default setting is True: should NOT be changed !
4141
BiDirectional_RecoToSim_association = cms.bool(True),
42-
doSummaryPlots = cms.bool(True),
42+
doSummaryPlots = cms.bool(False),
4343
#
4444
# Output File / Directory
4545
outputFile = cms.string(''),

Validation/RecoMuon/python/associators_cff.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -380,27 +380,27 @@
380380
+tpToGlbMuonAssociation
381381
+pfMuonTracks_seq+tpToPFMuonAssociation
382382
+recoMuonTracks_seq+tpTorecoMuonMuonAssociation
383-
)
383+
)
384384

385385
muonAssociationTEV_seq = cms.Sequence(
386386
tpToTevFirstMuonAssociation+tpToTevPickyMuonAssociation+tpToTevDytMuonAssociation
387387
+tunepMuonTracks_seq+tpToTunePMuonAssociation
388-
)
388+
)
389389

390390
muonAssociationDisplaced_seq = cms.Sequence(
391391
seedsOfDisplacedSTAmuons_seq+tpToDisplacedStaSeedAssociation+tpToDisplacedStaMuonAssociation
392392
+tpToDisplacedTrkMuonAssociation+tpToDisplacedGlbMuonAssociation
393-
)
393+
)
394394

395395
muonAssociationRefit_seq = cms.Sequence(
396396
tpToStaRefitMuonAssociation+tpToStaRefitUpdMuonAssociation
397-
)
397+
)
398398

399399
muonAssociationCosmic_seq = cms.Sequence(
400400
tpToTkCosmicSelMuonAssociation+ tpToTkCosmic1LegSelMuonAssociation
401401
+tpToStaCosmicSelMuonAssociation+tpToStaCosmic1LegSelMuonAssociation
402402
+tpToGlbCosmicSelMuonAssociation+tpToGlbCosmic1LegSelMuonAssociation
403-
)
403+
)
404404

405405
#
406406
# The HLT association sequence
@@ -412,7 +412,7 @@
412412
+tpToL3GlbMuonAssociation
413413
+hltIterL3MuonsNoIDTracks_seq+tpToL3NoIDMuonAssociation
414414
+hltIterL3MuonsTracks_seq+tpToL3MuonAssociation
415-
)
415+
)
416416

417417
#
418418
# The Phase 2 sequences
@@ -437,7 +437,7 @@
437437
+Phase2tpToL3TkMergedAssociation+Phase2tpToL3GlbMuonMergedAssociation
438438
+hltPhase2L3MuonNoIdTracks+Phase2tpToL3MuonNoIdAssociation
439439
+hltPhase2L3MuonIdTracks+Phase2tpToL3MuonIdAssociation
440-
)
440+
)
441441

442442
from Configuration.Eras.Modifier_phase2_muon_cff import phase2_muon
443443
phase2_muon.toReplaceWith(muonAssociationHLT_seq, _muonAssociationHLT_seq)
@@ -451,7 +451,7 @@
451451
+Phase2tpToL3TkMergedAssociation+Phase2tpToL3GlbMuonMergedAssociation
452452
+hltPhase2L3MuonNoIdTracks+Phase2tpToL3MuonNoIdAssociation
453453
+hltPhase2L3MuonIdTracks+Phase2tpToL3MuonIdAssociation
454-
)
454+
)
455455
# Outside-In first
456456
_muonAssociationHLT_seq_OI_first = cms.Sequence(
457457
hltPhase2L2MuonSeedTracks+Phase2tpToL2SeedAssociation
@@ -461,7 +461,7 @@
461461
+Phase2tpToL3GlbMuonMergedAssociation
462462
+hltPhase2L3MuonNoIdTracks+Phase2tpToL3MuonNoIdAssociation
463463
+hltPhase2L3MuonIdTracks+Phase2tpToL3MuonIdAssociation
464-
)
464+
)
465465

466466
from Configuration.ProcessModifiers.phase2L2AndL3Muons_cff import phase2L2AndL3Muons
467467
phase2L2AndL3Muons.toReplaceWith(muonAssociationHLT_seq, _muonAssociationHLT_seq_IO_first)

0 commit comments

Comments
 (0)