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