File indexing completed on 2023-03-17 13:03:49
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("DumpMuonGeometryTest")
0004
0005 process.source = cms.Source("EmptySource")
0006 process.maxEvents = cms.untracked.PSet(
0007 input = cms.untracked.int32(1)
0008 )
0009
0010 process.DDDetectorESProducer = cms.ESSource("DDDetectorESProducer",
0011 confGeomXMLFiles = cms.FileInPath('Geometry/MuonCommonData/data/cms-test-muon-geometry-2015.xml'),
0012 appendToDataLabel = cms.string('MUON')
0013 )
0014
0015 process.testDump = cms.EDAnalyzer("DDTestDumpFile",
0016 DDDetector = cms.ESInputTag('','MUON')
0017 )
0018
0019 process.p = cms.Path(process.testDump)