Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:03

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   # DQM directory
0010   FolderName = 'HLT/BPH/Tau3Mu/',
0011 
0012   # histogram binning
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", # 3-muon candidates
0036 
0037   GenericTriggerEventPSet = dict(
0038     andOr          = False, # https://github.com/cms-sw/cmssw/blob/76d343005c33105be1e01b7b7278c07d753398db/CommonTools/TriggerUtils/src/GenericTriggerEventFlag.cc#L249
0039     andOrHlt       =  True , # https://github.com/cms-sw/cmssw/blob/76d343005c33105be1e01b7b7278c07d753398db/CommonTools/TriggerUtils/src/GenericTriggerEventFlag.cc#L114
0040     hltPaths       = ["HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_v*"],
0041     # determine the DCS partitions to be active https://github.com/cms-sw/cmssw/blob/b767924e38a6b75340e6e120ece95b648bd11d2d/DataFormats/Scalers/interface/DcsStatus.h#L35
0042     # RPC (12) + DT (13-15) + CSC (16-17) + TRK (24-27) + PIX (28-29)
0043     dcsPartitions = [12, 13, 14, 15, 16, 17, 24, 25, 26, 27, 28, 29])
0044     # verbosityLevel = 2, # set to 2 for debugging
0045     # hltInputTag    = "TriggerResults::reHLT") # change the process name to reHLT when running tests (if the process used to rerun the HLT is reHLT, of course)
0046   )