Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:25

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("PERFORMANCESUMMARYREAD")
0004 process.load("FWCore.MessageLogger.MessageLogger_cfi")
0005 
0006 process.source = cms.Source("EmptySource",
0007     numberEventsInRun = cms.untracked.uint32(10),
0008     firstRun = cms.untracked.uint32(1)
0009 )
0010 
0011 process.maxEvents = cms.untracked.PSet(
0012     input = cms.untracked.int32(1)
0013 )
0014 process.PoolDBESSource = cms.ESSource("PoolDBESSource",
0015     DBParameters = cms.PSet(
0016         messageLevel = cms.untracked.int32(2),
0017         authenticationPath = cms.untracked.string('.')
0018     ),
0019     timetype = cms.string('runnumber'),
0020     toGet = cms.VPSet(cms.PSet(
0021         record = cms.string('SiPixelPerformanceSummaryRcd'),
0022         tag = cms.string('dummy')
0023     )),
0024     connect = cms.string('sqlite_file:sipixelperformancesummary.db')
0025 )
0026 
0027 process.prod = cms.EDAnalyzer("SiPixelPerformanceSummaryReader")
0028 
0029 #process.print = cms.OutputModule("AsciiOutputModule")
0030 
0031 process.p = cms.Path(process.prod)
0032 #process.ep = cms.EndPath(process.print)
0033 
0034