Go to the documentation of this file.00001
00002 import FWCore.ParameterSet.Config as cms
00003
00004 import HLTrigger.HLTfilters.hltHighLevel_cfi
00005 ALCARECOTkAlMuonIsolatedHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
00006 andOr = True,
00007 eventSetupPathsKey = 'TkAlMuonIsolated',
00008 throw = False
00009 )
00010
00011
00012
00013
00014
00015 import DPGAnalysis.Skims.skim_detstatus_cfi
00016 ALCARECOTkAlMuonIsolatedDCSFilter = DPGAnalysis.Skims.skim_detstatus_cfi.dcsstatus.clone(
00017 DetectorType = cms.vstring('TIBTID','TOB','TECp','TECm','BPIX','FPIX'),
00018 ApplyFilter = cms.bool(True),
00019 AndOr = cms.bool(True),
00020 DebugOn = cms.untracked.bool(False)
00021 )
00022
00023 import Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi
00024 ALCARECOTkAlMuonIsolated = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
00025 filter = True,
00026 applyBasicCuts = True,
00027 ptMin = 2.0,
00028 etaMin = -3.5,
00029 etaMax = 3.5,
00030 nHitMin = 0
00031 )
00032
00033 ALCARECOTkAlMuonIsolated.GlobalSelector.applyIsolationtest = True
00034 ALCARECOTkAlMuonIsolated.GlobalSelector.minJetDeltaR = 0.1
00035 ALCARECOTkAlMuonIsolated.GlobalSelector.applyGlobalMuonFilter = True
00036 ALCARECOTkAlMuonIsolated.TwoBodyDecaySelector.applyMassrangeFilter = False
00037 ALCARECOTkAlMuonIsolated.TwoBodyDecaySelector.applyChargeFilter = False
00038 ALCARECOTkAlMuonIsolated.TwoBodyDecaySelector.applyAcoplanarityFilter = False
00039
00040 seqALCARECOTkAlMuonIsolated = cms.Sequence(ALCARECOTkAlMuonIsolatedHLT+ALCARECOTkAlMuonIsolatedDCSFilter+ALCARECOTkAlMuonIsolated)