File indexing completed on 2023-03-17 10:58:03
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0004 l1tSync_Offline = DQMEDAnalyzer('L1TSync_Offline',
0005 dqmStore = cms.untracked.bool(True),
0006 verbose = cms.untracked.bool(False),
0007 inputTagScalersResults = cms.InputTag("scalersRawToDigi"),
0008 inputTagL1GtDataDaq = cms.InputTag("gtDigis"),
0009 inputTagtEvmSource = cms.InputTag("gtEvmDigis"),
0010
0011
0012 oracleDB = cms.string("oracle://CMS_OMDS_LB/CMS_TRG_R"),
0013 pathCondDB = cms.string("/nfshome0/centraltspro/secure/"),
0014
0015
0016
0017
0018
0019
0020
0021 refPrescaleSet = cms.int32(0),
0022
0023
0024 Categories = cms.PSet(
0025
0026
0027 forceGlobalParameters = cms.bool(False),
0028 doGlobalAutoSelection = cms.bool(False),
0029
0030 BPTX = cms.PSet(
0031 monitor = cms.bool(True),
0032 algo = cms.string("Tech_BPTX_AND"),
0033 CertMinEvents = cms.int32(50),
0034 ),
0035 Mu = cms.PSet(
0036 monitor = cms.bool(True),
0037 doAutoSelection = cms.bool(True),
0038 algo = cms.string(""),
0039 CertMinEvents = cms.int32(20),
0040 ),
0041 EG = cms.PSet(
0042 monitor = cms.bool(True),
0043 doAutoSelection = cms.bool(True),
0044 algo = cms.string(""),
0045 CertMinEvents = cms.int32(20),
0046 ),
0047 IsoEG = cms.PSet(
0048 monitor = cms.bool(True),
0049 doAutoSelection = cms.bool(True),
0050 algo = cms.string(""),
0051 CertMinEvents = cms.int32(20),
0052 ),
0053 Tau = cms.PSet(
0054 monitor = cms.bool(True),
0055 doAutoSelection = cms.bool(True),
0056 algo = cms.string(""),
0057 CertMinEvents = cms.int32(20),
0058 ),
0059 IsoTau = cms.PSet(
0060 monitor = cms.bool(True),
0061 doAutoSelection = cms.bool(True),
0062 algo = cms.string(""),
0063 CertMinEvents = cms.int32(20),
0064 ),
0065 Jet = cms.PSet(
0066 monitor = cms.bool(True),
0067 doAutoSelection = cms.bool(True),
0068 algo = cms.string(""),
0069 CertMinEvents = cms.int32(20),
0070 ),
0071 CenJet = cms.PSet(
0072 monitor = cms.bool(False),
0073 doAutoSelection = cms.bool(True),
0074 algo = cms.string(""),
0075 CertMinEvents = cms.int32(50),
0076 ),
0077 ForJet = cms.PSet(
0078 monitor = cms.bool(False),
0079 doAutoSelection = cms.bool(True),
0080 algo = cms.string(""),
0081 CertMinEvents = cms.int32(20),
0082 ),
0083 TauJet = cms.PSet(
0084 monitor = cms.bool(False),
0085 doAutoSelection = cms.bool(True),
0086 algo = cms.string(""),
0087 CertMinEvents = cms.int32(20),
0088 ),
0089 ETM = cms.PSet(
0090 monitor = cms.bool(True),
0091 doAutoSelection = cms.bool(True),
0092 algo = cms.string(""),
0093 CertMinEvents = cms.int32(20),
0094 ),
0095 ETT = cms.PSet(
0096 monitor = cms.bool(True),
0097 doAutoSelection = cms.bool(True),
0098 algo = cms.string(""),
0099 CertMinEvents = cms.int32(20),
0100 ),
0101 HTT = cms.PSet(
0102 monitor = cms.bool(True),
0103 doAutoSelection = cms.bool(True),
0104 algo = cms.string(""),
0105 CertMinEvents = cms.int32(20),
0106 ),
0107 HTM = cms.PSet(
0108 monitor = cms.bool(True),
0109 doAutoSelection = cms.bool(True),
0110 algo = cms.string(""),
0111 CertMinEvents = cms.int32(20),
0112 ),
0113 ),
0114
0115
0116 )