Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:05:29

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("DDCMSDetectorTest")
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('DetectorDescription/DDCMS/data/cms-test-ddangular-algorithm.xml'),
0012                                             appendToDataLabel = cms.string('TestAngular')
0013                                             )
0014 
0015 process.testDump = cms.EDAnalyzer("DDTestDumpFile",
0016                                   DDDetector = cms.ESInputTag('','TestAngular')
0017                                   )
0018 
0019 process.p = cms.Path(process.testDump)