File indexing completed on 2023-03-17 10:58:47
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from DQMOffline.Trigger.NoBPTXMonitoring_cfi import NoBPTXMonitoring
0004
0005 hltNoBPTXmonitoring = NoBPTXMonitoring.clone(
0006 FolderName = 'HLT/EXO/NoBPTX/JetE60/',
0007 jets = "ak4CaloJets",
0008 muons = "displacedStandAloneMuons",
0009 muonSelection = "hitPattern.dtStationsWithValidHits > 3 & hitPattern.numberOfValidMuonRPCHits > 1 & hitPattern.numberOfValidMuonCSCHits < 1",
0010 jetSelection = "abs(eta) < 1.",
0011
0012 histoPSet = dict(
0013 lsPSet = dict(
0014 nbins = 250,
0015 xmin = 0.,
0016 xmax = 2500.),
0017 jetEPSet = dict(
0018 nbins = 100,
0019 xmin = -0.5,
0020 xmax = 999.5),
0021
0022 jetEtaPSet = dict(
0023 nbins = 100,
0024 xmin = -5.,
0025 xmax = 5.),
0026
0027 jetPhiPSet = dict(
0028 nbins = 64,
0029 xmin = -3.2,
0030 xmax = 3.2),
0031
0032 muonPtPSet = dict(
0033 nbins = 100,
0034 xmin = -0.5,
0035 xmax = 999.5),
0036
0037 muonEtaPSet = dict(
0038 nbins = 100,
0039 xmin = -5.,
0040 xmax = 5.),
0041
0042 muonPhiPSet = dict(
0043 nbins = 64,
0044 xmin = -3.2,
0045 xmax = 3.2),
0046
0047 bxPSet = dict(
0048 nbins = 1800)
0049 ),
0050
0051 numGenericTriggerEventPSet = dict(
0052 andOr = False,
0053
0054 andOrHlt = True,
0055 hltInputTag = "TriggerResults::HLT",
0056 hltPaths = ["HLT_UncorrectedJetE60_NoBPTX3BX_v*"],
0057
0058 errorReplyHlt = False,
0059 verbosityLevel = 1),
0060
0061 denGenericTriggerEventPSet = dict(
0062 andOr = False,
0063 dcsInputTag = "scalersRawToDigi",
0064 dcsRecordInputTag = "onlineMetaDataDigis",
0065 dcsPartitions = [ 24, 25, 26, 27, 28, 29],
0066 andOrDcs = False,
0067 errorReplyDcs = True,
0068 verbosityLevel = 1)
0069 )
0070
0071