test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ALCARECOTkAlMuonIsolatedHI_cff.py
Go to the documentation of this file.
1 # AlCaReco for track based alignment using isolated muon tracks
2 import FWCore.ParameterSet.Config as cms
3 
5 
6 ALCARECOTkAlMuonIsolatedHIHLT = ALCARECOTkAlMuonIsolatedHLT.clone(
7  eventSetupPathsKey = 'TkAlMuonIsolated'
8  )
9 
10 ALCARECOTkAlMuonIsolatedHIDCSFilter = ALCARECOTkAlMuonIsolatedDCSFilter.clone()
11 
12 ALCARECOTkAlMuonIsolatedHIGoodMuons = ALCARECOTkAlMuonIsolatedGoodMuons.clone()
13 ALCARECOTkAlMuonIsolatedHIRelCombIsoMuons = ALCARECOTkAlMuonIsolatedRelCombIsoMuons.clone(
14  src = 'ALCARECOTkAlMuonIsolatedHIGoodMuons'
15 )
16 
17 ALCARECOTkAlMuonIsolatedHI = ALCARECOTkAlMuonIsolated.clone(
18  src = 'hiGeneralTracks'
19 )
20 
21 ALCARECOTkAlMuonIsolatedHI.GlobalSelector.muonSource = 'ALCARECOTkAlMuonIsolatedHIRelCombIsoMuons'
22 # Isolation is shifted to the muon preselection, and then applied intrinsically if applyGlobalMuonFilter = True
23 ALCARECOTkAlMuonIsolatedHI.GlobalSelector.applyIsolationtest = False
24 ALCARECOTkAlMuonIsolatedHI.GlobalSelector.minJetDeltaR = 0.1
25 ALCARECOTkAlMuonIsolatedHI.GlobalSelector.applyGlobalMuonFilter = True
26 ALCARECOTkAlMuonIsolatedHI.GlobalSelector.jetIsoSource = cms.InputTag("iterativeConePu5CaloJets")
27 ALCARECOTkAlMuonIsolatedHI.GlobalSelector.jetCountSource = cms.InputTag("iterativeConePu5CaloJets")
28 
29 ALCARECOTkAlMuonIsolatedHI.TwoBodyDecaySelector.applyMassrangeFilter = False
30 ALCARECOTkAlMuonIsolatedHI.TwoBodyDecaySelector.applyChargeFilter = False
31 ALCARECOTkAlMuonIsolatedHI.TwoBodyDecaySelector.applyAcoplanarityFilter = False
32 
33 seqALCARECOTkAlMuonIsolatedHI = cms.Sequence(ALCARECOTkAlMuonIsolatedHIHLT+ALCARECOTkAlMuonIsolatedHIDCSFilter+ALCARECOTkAlMuonIsolatedHIGoodMuons+ALCARECOTkAlMuonIsolatedHIRelCombIsoMuons+ALCARECOTkAlMuonIsolatedHI)