Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:05:23

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("GeometryTest")
0004 process.load("Geometry.TrackerCommonData.testGeometryXML_cfi")
0005 
0006 process.MessageLogger = cms.Service("MessageLogger",
0007     destinations = cms.untracked.vstring('debug'),
0008     categories   = cms.untracked.vstring('TrackerGeom', 'TECGeom'),
0009     debugModules = cms.untracked.vstring('*'),
0010     debug        = cms.untracked.PSet(
0011         threshold = cms.untracked.string('DEBUG'),
0012         INFO = cms.untracked.PSet(
0013             limit = cms.untracked.int32(0)
0014         ),
0015         DEBUG = cms.untracked.PSet(
0016             limit = cms.untracked.int32(0)
0017         ),
0018         TrackerGeom = cms.untracked.PSet(
0019             limit = cms.untracked.int32(-1)
0020         ),
0021         TECGeom = cms.untracked.PSet(
0022             limit = cms.untracked.int32(-1)
0023         )
0024     )
0025 )
0026 
0027 process.m = cms.EDAnalyzer("PerfectGeometryAnalyzer",
0028     dumpGeoHistory = cms.untracked.bool(False),
0029     dumpPosInfo    = cms.untracked.bool(False),
0030     dumpSpecs      = cms.untracked.bool(False)
0031 )
0032 
0033 process.maxEvents = cms.untracked.PSet(
0034     input = cms.untracked.int32(1)
0035 )
0036 process.source = cms.Source("EmptySource")
0037 
0038 process.p1 = cms.Path(process.m)