Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:17

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)