File indexing completed on 2023-03-17 10:48:45
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("PERFORMANCESUMMARYWRITE")
0004 process.load("FWCore.MessageLogger.MessageLogger_cfi")
0005
0006 process.load("Geometry.TrackerSimData.trackerSimGeometryXML_cfi")
0007
0008 process.load("Geometry.TrackerGeometryBuilder.trackerGeometry_cfi")
0009
0010 process.load("Geometry.TrackerNumberingBuilder.trackerNumberingGeometry_cfi")
0011
0012 process.load('Configuration/StandardSequences/FrontierConditions_GlobalTag_cff')
0013 process.GlobalTag.globaltag = 'MC_3XY_V15::All'
0014
0015
0016 process.source = cms.Source("EmptyIOVSource",
0017 firstValue = cms.uint64(1),
0018 lastValue = cms.uint64(1),
0019 timetype = cms.string('runnumber'),
0020 interval = cms.uint64(1)
0021 )
0022
0023 process.PoolDBOutputService = cms.Service("PoolDBOutputService",
0024 DBParameters = cms.PSet(
0025 messageLevel = cms.untracked.int32(2),
0026 authenticationPath = cms.untracked.string('.')
0027 ),
0028 timetype = cms.untracked.string('runnumber'),
0029 connect = cms.string('sqlite_file:sipixelperformancesummary.db'),
0030 toPut = cms.VPSet(cms.PSet(
0031 record = cms.string('SiPixelPerformanceSummaryRcd'),
0032 tag = cms.string('dummy')
0033 ))
0034 )
0035
0036 process.prod = cms.EDAnalyzer("SiPixelPerformanceSummaryBuilder")
0037
0038
0039
0040 process.p = cms.Path(process.prod)
0041
0042
0043