Back to home page

Project CMSSW displayed by LXR

 
 

    


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 # process.DetVOffSummary = cms.EDAnalyzer( "SiStripDetVOffPrinter",
0032 #                                          process.CondDB,
0033 #                                          conditionDatabase = cms.string("frontier://FrontierProd/CMS_CONDITIONS"),
0034 #                                          # Add the tag 
0035 #                                          tagName = cms.string("SiStripDetVOff_1hourDelay_v1_Validation"),
0036 #                                          # Start and end time
0037 #                                          # Time format: "2002-01-20 23:59:59.000" (UTC).
0038 #                                          startTime = cms.string("2018.08.09 18:20:00"),
0039 #                                          endTime   = cms.string("2018.08.09 22:14:00"),
0040 #                                          # Set output file name. Leave empty if do not want to dump HV/LV counts in a text file.
0041 #                                          output = cms.string("PerModuleSummary.txt")
0042 #                                          )
0043 
0044 process.p = cms.Path(process.siStripDetVOffPrinter)