File indexing completed on 2024-04-06 11:59:49
0001 import FWCore.ParameterSet.Config as cms
0002 import os
0003
0004 process = cms.Process("summary")
0005
0006 process.MessageLogger = cms.Service("MessageLogger",
0007 cerr = cms.untracked.PSet(
0008 enable = cms.untracked.bool(False)
0009 ),
0010 cout = cms.untracked.PSet(
0011 enable = cms.untracked.bool(True),
0012 threshold = cms.untracked.string('DEBUG')
0013 ),
0014 debugModules = cms.untracked.vstring('*')
0015 )
0016
0017 process.maxEvents = cms.untracked.PSet(
0018 input = cms.untracked.int32(1)
0019 )
0020 process.source = cms.Source("EmptySource",
0021 numberEventsInRun = cms.untracked.uint32(1),
0022 firstRun = cms.untracked.uint32(1)
0023 )
0024
0025 process.load("CondCore.CondDB.CondDB_cfi")
0026 process.load("CalibTracker.SiStripDCS.siStripDetVOffPrinter_cfi")
0027 process.siStripDetVOffPrinter.tagName = "SiStripDetVOff_13hourDelay_v1_Validation"
0028 process.siStripDetVOffPrinter.startTime = "2018.08.09 18:20:00"
0029 process.siStripDetVOffPrinter.endTime = "2018.08.09 22:14:00"
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042
0043
0044 process.p = cms.Path(process.siStripDetVOffPrinter)