Go to the documentation of this file.00001
00002 import FWCore.ParameterSet.Config as cms
00003
00004
00005 import HLTrigger.HLTfilters.hltHighLevel_cfi
00006 ALCARECOMuAlStandAloneCosmicsHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
00007 andOr = True,
00008 eventSetupPathsKey = 'MuAlStandAloneCosmics',
00009 throw = False
00010 )
00011
00012
00013
00014
00015
00016 import DPGAnalysis.Skims.skim_detstatus_cfi
00017 ALCARECOMuAlStandAloneCosmicsDCSFilter = DPGAnalysis.Skims.skim_detstatus_cfi.dcsstatus.clone(
00018 DetectorType = cms.vstring('DT0','DTp','DTm','CSCp','CSCm'),
00019 ApplyFilter = cms.bool(True),
00020 AndOr = cms.bool(False),
00021 DebugOn = cms.untracked.bool(False)
00022 )
00023
00024 import Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi
00025 ALCARECOMuAlStandAloneCosmics = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
00026 src = "cosmicMuons",
00027 filter = True,
00028 ptMin = 10.0,
00029 etaMin = -100.0,
00030 etaMax = 100.0
00031 )
00032
00033 seqALCARECOMuAlStandAloneCosmics = cms.Sequence(ALCARECOMuAlStandAloneCosmicsHLT + ALCARECOMuAlStandAloneCosmicsDCSFilter + ALCARECOMuAlStandAloneCosmics)
00034