CMS 3D CMS Logo

Tau3MuMonitor_cfi.py
Go to the documentation of this file.
1 from math import pi
2 
3 import FWCore.ParameterSet.Config as cms
4 
5 from DQMOffline.Trigger.tau3muMonitoring_cfi import tau3muMonitoring
6 
7 hltTau3Mumonitoring = tau3muMonitoring.clone(
8 
9  # DQM directory
10  FolderName = 'HLT/BPH/Tau3Mu/',
11 
12  # histogram binning
13  histoPSet = dict(
14  ptPSet = dict(
15  nbins = 40 ,
16  xmin = - 0.5,
17  xmax = 99.5),
18 
19  etaPSet = dict(
20  nbins = 10 ,
21  xmin = - 2.6,
22  xmax = 2.6),
23 
24  phiPSet = dict(
25  nbins = 10,
26  xmin = -pi,
27  xmax = pi),
28 
29  massPSet = dict(
30  nbins = 40 ,
31  xmin = 0.5,
32  xmax = 3. ),
33  ),
34 
35  taus = "hltTauPt15MuPts711Mass1p3to2p1Iso:Taus", # 3-muon candidates
36 
37  GenericTriggerEventPSet = dict(
38  andOr = False, # https://github.com/cms-sw/cmssw/blob/76d343005c33105be1e01b7b7278c07d753398db/CommonTools/TriggerUtils/src/GenericTriggerEventFlag.cc#L249
39  andOrHlt = True , # https://github.com/cms-sw/cmssw/blob/76d343005c33105be1e01b7b7278c07d753398db/CommonTools/TriggerUtils/src/GenericTriggerEventFlag.cc#L114
40  hltPaths = ["HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_v*"],
41  # determine the DCS partitions to be active https://github.com/cms-sw/cmssw/blob/b767924e38a6b75340e6e120ece95b648bd11d2d/DataFormats/Scalers/interface/DcsStatus.h#L35
42  # RPC (12) + DT (13-15) + CSC (16-17) + TRK (24-27) + PIX (28-29)
43  dcsPartitions = [12, 13, 14, 15, 16, 17, 24, 25, 26, 27, 28, 29])
44  # verbosityLevel = 2, # set to 2 for debugging
45  # hltInputTag = "TriggerResults::reHLT") # change the process name to reHLT when running tests (if the process used to rerun the HLT is reHLT, of course)
46  )