File indexing completed on 2024-04-06 12:15:20
0001 import FWCore.ParameterSet.Config as cms
0002 from Configuration.Eras.Era_Run3_dd4hep_cff import Run3_dd4hep
0003
0004 process = cms.Process('VALID',Run3_dd4hep)
0005
0006 process.source = cms.Source('EmptySource')
0007
0008 process.maxEvents = cms.untracked.PSet(
0009 input = cms.untracked.int32(1)
0010 )
0011
0012 process.load('Configuration.StandardSequences.DD4hep_GeometrySim_cff')
0013 process.load("FWCore.MessageLogger.MessageLogger_cfi")
0014 process.load("Geometry.MuonNumbering.muonGeometryConstants_cff")
0015 process.load("Geometry.RPCGeometryBuilder.rpcGeometry_cfi")
0016
0017 process.MessageLogger = cms.Service("MessageLogger",
0018 destinations = cms.untracked.vstring('myLog'),
0019 myLog = cms.untracked.PSet(
0020 threshold = cms.untracked.string('INFO'),
0021 )
0022 )
0023
0024 process.valid = cms.EDAnalyzer("RPCGeometryValidate",
0025 infileName = cms.untracked.string('cmsRecoGeom-2021.root'),
0026 outfileName = cms.untracked.string('validateRPCGeometry.root'),
0027 tolerance = cms.untracked.int32(7)
0028 )
0029
0030 process.p = cms.Path(process.valid)