File indexing completed on 2023-03-17 10:39:41
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("test")
0004 process.load("Geometry.CMSCommonData.cmsIdealGeometryXML_cfi")
0005
0006 process.load("Geometry.MuonNumbering.muonNumberingInitialization_cfi")
0007
0008 process.source = cms.Source("EmptySource")
0009
0010 process.maxEvents = cms.untracked.PSet(
0011 input = cms.untracked.int32(1)
0012 )
0013 process.MuonGeometryDBConverter = cms.EDAnalyzer("MuonGeometryDBConverter",
0014 outputXML = cms.PSet(
0015 relativeto = cms.string('ideal'),
0016 eulerAngles = cms.bool(False),
0017 survey = cms.bool(False),
0018 rawIds = cms.bool(False),
0019 fileName = cms.string('tmp2.xml'),
0020 precision = cms.int32(6)
0021 ),
0022 shiftErr = cms.double(5.0),
0023 fileName = cms.string('tmp.xml'),
0024 input = cms.string('xml'),
0025 output = cms.string('xml'),
0026 angleErr = cms.double(1.0)
0027 )
0028
0029 process.p = cms.Path(process.MuonGeometryDBConverter)
0030
0031