File indexing completed on 2023-03-17 10:58:48
0001 from math import pi
0002
0003 import FWCore.ParameterSet.Config as cms
0004
0005 from DQMOffline.Trigger.tau3muMonitoring_cfi import tau3muMonitoring
0006
0007 hltTau3Mumonitoring = tau3muMonitoring.clone(
0008
0009
0010 FolderName = 'HLT/BPH/Tau3Mu/',
0011
0012
0013 histoPSet = dict(
0014 ptPSet = dict(
0015 nbins = 40 ,
0016 xmin = - 0.5,
0017 xmax = 99.5),
0018
0019 etaPSet = dict(
0020 nbins = 10 ,
0021 xmin = - 2.6,
0022 xmax = 2.6),
0023
0024 phiPSet = dict(
0025 nbins = 10,
0026 xmin = -pi,
0027 xmax = pi),
0028
0029 massPSet = dict(
0030 nbins = 40 ,
0031 xmin = 0.5,
0032 xmax = 3. ),
0033 ),
0034
0035 taus = "hltTauPt15MuPts711Mass1p3to2p1Iso:Taus",
0036
0037 GenericTriggerEventPSet = dict(
0038 andOr = False,
0039 andOrHlt = True ,
0040 hltPaths = ["HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_v*"],
0041
0042
0043 dcsPartitions = [12, 13, 14, 15, 16, 17, 24, 25, 26, 27, 28, 29])
0044
0045
0046 )