CMS 3D CMS Logo

ALCARECOTkAlMuonIsolatedPA_cff.py
Go to the documentation of this file.
1 # AlCaReco for track based alignment using isolated muon tracks - relaxed cuts for pA collisions
2 import FWCore.ParameterSet.Config as cms
3 
5 ALCARECOTkAlMuonIsolatedPAHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
6  andOr = True,
7  eventSetupPathsKey = 'TkAlMuonIsolatedPA',
8  throw = False # tolerate triggers stated above, but not available
9  )
10 
11 # DCS partitions
12 # "EBp","EBm","EEp","EEm","HBHEa","HBHEb","HBHEc","HF","HO","RPC"
13 # "DT0","DTp","DTm","CSCp","CSCm","CASTOR","TIBTID","TOB","TECp","TECm"
14 # "BPIX","FPIX","ESp","ESm"
15 import DPGAnalysis.Skims.skim_detstatus_cfi
16 ALCARECOTkAlMuonIsolatedPADCSFilter = DPGAnalysis.Skims.skim_detstatus_cfi.dcsstatus.clone(
17  DetectorType = cms.vstring('TIBTID','TOB','TECp','TECm','BPIX','FPIX',
18  'DT0','DTp','DTm','CSCp','CSCm'),
19  ApplyFilter = cms.bool(True),
20  AndOr = cms.bool(True),
21  DebugOn = cms.untracked.bool(False)
22 )
23 
25 ALCARECOTkAlMuonIsolatedPA = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
26  filter = True,
27  applyBasicCuts = True,
28  ptMin = 2.0,
29  etaMin = -3.5,
30  etaMax = 3.5,
31  nHitMin = 0
32 )
33 
34 # isolation cuts are relaxed compared to pp version
35 ALCARECOTkAlMuonIsolatedPA.GlobalSelector.applyIsolationtest = False
36 ALCARECOTkAlMuonIsolatedPA.GlobalSelector.minJetDeltaR = 0. # pp version has 0.1
37 ALCARECOTkAlMuonIsolatedPA.GlobalSelector.applyGlobalMuonFilter = True
38 
39 ALCARECOTkAlMuonIsolatedPA.TwoBodyDecaySelector.applyMassrangeFilter = False
40 ALCARECOTkAlMuonIsolatedPA.TwoBodyDecaySelector.applyChargeFilter = False
41 ALCARECOTkAlMuonIsolatedPA.TwoBodyDecaySelector.applyAcoplanarityFilter = False
42 
43 # also here no furtehr cuts on muon collection as in pp version
44 seqALCARECOTkAlMuonIsolatedPA = cms.Sequence(ALCARECOTkAlMuonIsolatedPAHLT
45  +ALCARECOTkAlMuonIsolatedPADCSFilter
46  +ALCARECOTkAlMuonIsolatedPA)
dont throw on unknown path names