CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolatedPA_cff.py

Go to the documentation of this file.
00001 # AlCaReco for track based Alignment using isolated muon tracks - relaxed cuts for pA collisions
00002 import FWCore.ParameterSet.Config as cms
00003 
00004 import HLTrigger.HLTfilters.hltHighLevel_cfi
00005 ALCARECOTkAlMuonIsolatedPAHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
00006     andOr = True, ## choose logical OR between Triggerbits
00007     # FIXME: eventSetupPathsKey inherited from pp version - switch to its own 'TkAlMuonIsolatedPA'???
00008     eventSetupPathsKey = 'TkAlMuonIsolated',
00009     throw = False # tolerate triggers stated above, but not available
00010     )
00011 
00012 # DCS partitions
00013 # "EBp","EBm","EEp","EEm","HBHEa","HBHEb","HBHEc","HF","HO","RPC"
00014 # "DT0","DTp","DTm","CSCp","CSCm","CASTOR","TIBTID","TOB","TECp","TECm"
00015 # "BPIX","FPIX","ESp","ESm"
00016 import DPGAnalysis.Skims.skim_detstatus_cfi
00017 ALCARECOTkAlMuonIsolatedPADCSFilter = DPGAnalysis.Skims.skim_detstatus_cfi.dcsstatus.clone(
00018     DetectorType = cms.vstring('TIBTID','TOB','TECp','TECm','BPIX','FPIX',
00019                                'DT0','DTp','DTm','CSCp','CSCm'),
00020     ApplyFilter  = cms.bool(True),
00021     AndOr        = cms.bool(True),
00022     DebugOn      = cms.untracked.bool(False)
00023 )
00024 
00025 import Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi
00026 ALCARECOTkAlMuonIsolatedPA = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
00027     filter = True, ##do not store empty events
00028     applyBasicCuts = True,
00029     ptMin = 2.0, ##GeV 
00030     etaMin = -3.5,
00031     etaMax = 3.5,
00032     nHitMin = 0
00033 )
00034 
00035 # isolation cuts are relaxed compared to pp version
00036 ALCARECOTkAlMuonIsolatedPA.GlobalSelector.applyIsolationtest = False
00037 ALCARECOTkAlMuonIsolatedPA.GlobalSelector.minJetDeltaR = 0. # pp version has 0.1
00038 ALCARECOTkAlMuonIsolatedPA.GlobalSelector.applyGlobalMuonFilter = True
00039 
00040 ALCARECOTkAlMuonIsolatedPA.TwoBodyDecaySelector.applyMassrangeFilter = False
00041 ALCARECOTkAlMuonIsolatedPA.TwoBodyDecaySelector.applyChargeFilter = False
00042 ALCARECOTkAlMuonIsolatedPA.TwoBodyDecaySelector.applyAcoplanarityFilter = False
00043 
00044 # also here no furtehr cuts on muon collection as in pp version
00045 seqALCARECOTkAlMuonIsolatedPA = cms.Sequence(ALCARECOTkAlMuonIsolatedPAHLT
00046                                              +ALCARECOTkAlMuonIsolatedPADCSFilter
00047                                              +ALCARECOTkAlMuonIsolatedPA)