CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10/src/DetectorDescription/OnlineDBLoader/python/physpartstree_cfg.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 process = cms.Process("GeometryTest")
00004 process.load("Geometry.CMSCommonData.cmsIdealGeometryXML_cfi")
00005 
00006 process.maxEvents = cms.untracked.PSet(
00007     input = cms.untracked.int32(1)
00008 )
00009 process.source = cms.Source("EmptySource")
00010 
00011 process.ppt = cms.EDAnalyzer("PhysicalPartsTree")
00012 
00013 process.printM = cms.OutputModule("AsciiOutputModule")
00014 
00015 process.p1 = cms.Path(process.ppt)
00016 process.ep = cms.EndPath(process.printM)
00017