Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 from Configuration.Eras.Era_Run3_cff import Run3
0003  
0004 process = cms.Process('VALID',Run3)
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.Geometry.GeometryExtended2021_cff')
0013 process.load("FWCore.MessageLogger.MessageLogger_cfi")
0014 process.load("Geometry.MuonNumbering.muonNumberingInitialization_cfi")
0015 process.load("Geometry.MuonNumbering.muonGeometryConstants_cff")
0016 process.load("Geometry.DTGeometryBuilder.dtGeometry_cfi")
0017 
0018 process.MessageLogger = cms.Service("MessageLogger",
0019                                 destinations = cms.untracked.vstring('myLog'),
0020                                 myLog = cms.untracked.PSet(
0021                                 threshold = cms.untracked.string('INFO'),
0022                                 )
0023                             )
0024 
0025 process.valid = cms.EDAnalyzer("DTGeometryValidate",
0026                                 infileName = cms.untracked.string('cmsRecoGeom-2021.root'),
0027                                 outfileName = cms.untracked.string('validateDTGeometryDDD.root'),
0028                                 )
0029  
0030 process.p = cms.Path(process.valid)