/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolated_cff.py
62 строки
3 KB
mmusich
TkAlMuonSelectors_cfi: replace MuonSelector that express the structure of the selection in C++ code
01 ноя 2024, 12:32
01 ноя 2024, 12:32
b916211
Код
Авторство
О чём код?
# AlCaReco for track based alignment using isolated muon tracks import FWCore.ParameterSet.Config as cms import HLTrigger.HLTfilters.hltHighLevel_cfi ALCARECOTkAlMuonIsolatedHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone( andOr = True, ## choose logical OR between Triggerbits eventSetupPathsKey = 'TkAlMuonIsolated', throw = False # tolerate triggers stated above, but not available ) # DCS partitions # "EBp","EBm","EEp","EEm","HBHEa","HBHEb","HBHEc","HF","HO","RPC" # "DT0","DTp","DTm","CSCp","CSCm","CASTOR","TIBTID","TOB","TECp","TECm" # "BPIX","FPIX","ESp","ESm" import DPGAnalysis.Skims.skim_detstatus_cfi ALCARECOTkAlMuonIsolatedDCSFilter = DPGAnalysis.Skims.skim_detstatus_cfi.dcsstatus.clone( DetectorType = cms.vstring('TIBTID','TOB','TECp','TECm','BPIX','FPIX', 'DT0','DTp','DTm','CSCp','CSCm'), ApplyFilter = cms.bool(True), AndOr = cms.bool(True), DebugOn = cms.untracked.bool(False) ) from Alignment.CommonAlignmentProducer.TkAlMuonSelectors_cfi import * import Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi ALCARECOTkAlMuonIsolated = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone( filter = True, ##do not store empty events applyBasicCuts = True, ptMin = 2.0, ##GeV etaMin = -3.5, etaMax = 3.5, nHitMin = 0 ) ALCARECOTkAlMuonIsolated.GlobalSelector.muonSource = 'TkAlRelCombIsoMuonSelector' # Isolation is shifted to the muon preselection, and then applied intrinsically if applyGlobalMuonFilter = True ALCARECOTkAlMuonIsolated.GlobalSelector.applyIsolationtest = False ALCARECOTkAlMuonIsolated.GlobalSelector.minJetDeltaR = 0.1 ALCARECOTkAlMuonIsolated.GlobalSelector.applyGlobalMuonFilter = True ALCARECOTkAlMuonIsolated.TwoBodyDecaySelector.applyMassrangeFilter = False ALCARECOTkAlMuonIsolated.TwoBodyDecaySelector.applyChargeFilter = False ALCARECOTkAlMuonIsolated.TwoBodyDecaySelector.applyAcoplanarityFilter = False seqALCARECOTkAlMuonIsolated = cms.Sequence(ALCARECOTkAlMuonIsolatedHLT+ ALCARECOTkAlMuonIsolatedDCSFilter+ seqALCARECOTkAlRelCombIsoMuons+ ALCARECOTkAlMuonIsolated) ## customizations for the pp_on_AA eras from Configuration.Eras.Modifier_pp_on_XeXe_2017_cff import pp_on_XeXe_2017 from Configuration.ProcessModifiers.pp_on_AA_cff import pp_on_AA (pp_on_XeXe_2017 | pp_on_AA).toModify(ALCARECOTkAlMuonIsolatedHLT, eventSetupPathsKey='TkAlMuonIsolatedHI' ) (pp_on_XeXe_2017 | pp_on_AA).toModify(ALCARECOTkAlMuonIsolated.GlobalSelector, minJetDeltaR=0.0 ) from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker phase2_tracker.toModify(ALCARECOTkAlMuonIsolated, etaMin = -4, etaMax = 4)