File indexing completed on 2024-04-06 11:56:15
0001
0002 import FWCore.ParameterSet.Config as cms
0003
0004
0005 import HLTrigger.HLTfilters.hltHighLevel_cfi
0006 ALCARECOMuAlStandAloneCosmicsHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
0007 andOr = True,
0008 eventSetupPathsKey = 'MuAlStandAloneCosmics',
0009 throw = False
0010 )
0011
0012
0013
0014
0015
0016 import DPGAnalysis.Skims.skim_detstatus_cfi
0017 ALCARECOMuAlStandAloneCosmicsDCSFilter = DPGAnalysis.Skims.skim_detstatus_cfi.dcsstatus.clone(
0018 DetectorType = cms.vstring('DT0','DTp','DTm','CSCp','CSCm'),
0019 ApplyFilter = cms.bool(True),
0020 AndOr = cms.bool(False),
0021 DebugOn = cms.untracked.bool(False)
0022 )
0023
0024 import Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi
0025 ALCARECOMuAlStandAloneCosmics = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
0026 src = "cosmicMuons",
0027 filter = True,
0028 ptMin = 10.0,
0029 etaMin = -100.0,
0030 etaMax = 100.0
0031 )
0032
0033 seqALCARECOMuAlStandAloneCosmics = cms.Sequence(ALCARECOMuAlStandAloneCosmicsHLT + ALCARECOMuAlStandAloneCosmicsDCSFilter + ALCARECOMuAlStandAloneCosmics)
0034