Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 from DQM.L1TMonitor.L1TRateParams_cff import RateParams
00004
00005 L1TRate = cms.EDAnalyzer("L1TRate",
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 lsShiftGTRates = cms.untracked.int32(-1),
00018
00019 verbose = cms.untracked.bool(False),
00020 dqmStore = cms.untracked.bool(True),
00021 disableROOToutput = cms.untracked.bool(True),
00022 inputTagScalersResults = cms.InputTag("scalersRawToDigi"),
00023 inputTagL1GtDataDaq = cms.InputTag("gtDigis"),
00024 useHFDeadTimeNormalization = cms.untracked.bool(False),
00025
00026
00027 minInstantLuminosity = cms.double (100),
00028 maxInstantLuminosity = cms.double(5000),
00029
00030
00031 refPrescaleSet = cms.int32(0),
00032
00033
00034 testEventScalLS = cms.untracked.bool(True),
00035
00036
00037 categories = cms.PSet(
00038 cms.PSet(
00039 Mu = cms.untracked.bool(True),
00040 EG = cms.untracked.bool(True),
00041 IsoEG = cms.untracked.bool(True),
00042 Jet = cms.untracked.bool(True),
00043 CenJet = cms.untracked.bool(False),
00044 ForJet = cms.untracked.bool(False),
00045 TauJet = cms.untracked.bool(False),
00046 ETM = cms.untracked.bool(True),
00047 ETT = cms.untracked.bool(True),
00048 HTT = cms.untracked.bool(True),
00049 HTM = cms.untracked.bool(True),
00050 ),
00051 ),
00052
00053
00054
00055
00056 srcAlgoXSecFit = cms.int32(0),
00057
00058
00059
00060 oracleDB = cms.string("oracle://CMS_OMDS_LB/CMS_TRG_R"),
00061 pathCondDB = cms.string("/nfshome0/centraltspro/secure/"),
00062
00063
00064
00065
00066
00067
00068 fitParameters = RateParams
00069
00070 )