Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:14:45

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("GeometryTest")
0004 process.load("Geometry.HcalAlgo.testGeometry_cfi")
0005 
0006 process.MessageLogger = cms.Service("MessageLogger",
0007     cerr = cms.untracked.PSet(
0008         enable = cms.untracked.bool(False)
0009     ),
0010     debugModules = cms.untracked.vstring('*'),
0011     files = cms.untracked.PSet(
0012         debug = cms.untracked.PSet(
0013             DEBUG = cms.untracked.PSet(
0014                 limit = cms.untracked.int32(0)
0015             ),
0016             HCalGeom = cms.untracked.PSet(
0017                 limit = cms.untracked.int32(-1)
0018             ),
0019             INFO = cms.untracked.PSet(
0020                 limit = cms.untracked.int32(0)
0021             ),
0022             threshold = cms.untracked.string('DEBUG')
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)