File indexing completed on 2024-04-06 12:15:32
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("CompareGeometryTest")
0004
0005 process.maxEvents = cms.untracked.PSet(
0006 input = cms.untracked.int32(1)
0007 )
0008
0009 process.source = cms.Source("EmptyIOVSource",
0010 lastValue = cms.uint64(1),
0011 timetype = cms.string('runnumber'),
0012 firstValue = cms.uint64(1),
0013 interval = cms.uint64(1)
0014 )
0015
0016 process.myprint = cms.OutputModule("AsciiOutputModule")
0017
0018 process.fred = cms.ESSource("XMLIdealGeometryESSource",
0019 geomXMLFiles = cms.vstring('GeometryReaders/XMLIdealGeometryESSource/test/fred.xml'),
0020 rootNodeName = cms.string('cms:OCMS')
0021 )
0022
0023 process.pABF = cms.EDAnalyzer("PerfectGeometryAnalyzer",
0024 ddRootNodeName = cms.untracked.string("cms:OCMS"),
0025 dumpPosInfo = cms.untracked.bool(True),
0026 label = cms.untracked.string("fred"),
0027 isMagField = cms.untracked.bool(False),
0028 dumpSpecs = cms.untracked.bool(True),
0029 dumpGeoHistory = cms.untracked.bool(True),
0030 outFileName = cms.untracked.string("BDB"),
0031 numNodesToDump = cms.untracked.uint32(0)
0032 )
0033
0034 process.MessageLogger = cms.Service("MessageLogger",
0035 cerr = cms.untracked.PSet(
0036 enable = cms.untracked.bool(False)
0037 ),
0038 debugModules = cms.untracked.vstring('*'),
0039 files = cms.untracked.PSet(
0040 debug = cms.untracked.PSet(
0041 DEBUG = cms.untracked.PSet(
0042 limit = cms.untracked.int32(-1)
0043 ),
0044 INFO = cms.untracked.PSet(
0045 limit = cms.untracked.int32(-1)
0046 ),
0047 extension = cms.untracked.string('.out'),
0048 noLineBreaks = cms.untracked.bool(True),
0049 threshold = cms.untracked.string('DEBUG')
0050 ),
0051 errors = cms.untracked.PSet(
0052 extension = cms.untracked.string('.out'),
0053 threshold = cms.untracked.string('ERROR')
0054 ),
0055 log = cms.untracked.PSet(
0056 extension = cms.untracked.string('.out')
0057 )
0058 )
0059 )
0060
0061 process.Timing = cms.Service("Timing")
0062
0063 process.p1 = cms.Path(process.pABF)
0064 process.e1 = cms.EndPath(process.myprint)