Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process('VALID')
0004 
0005 process.source = cms.Source('EmptySource')
0006 
0007 process.maxEvents = cms.untracked.PSet(
0008     input = cms.untracked.int32(1)
0009     )
0010 
0011 process.load('Configuration.Geometry.GeometryExtended2026D41_cff')
0012 process.load("FWCore.MessageLogger.MessageLogger_cfi")
0013 process.load("Geometry.MuonNumbering.muonGeometryConstants_cff")
0014 process.load("Geometry.GEMGeometryBuilder.me0Geometry_cff")
0015 
0016 #
0017 # Note: Please, download the geometry file from a location
0018 #       specified by Fireworks/Geometry/data/download.url
0019 # For example: cmsRun $CMSSW_RELEASE_BASE/src/Fireworks/Geometry/python/dumpRecoGeometry_cfg.py tag=2026 version=D49
0020 # 
0021 #
0022 process.valid = cms.EDAnalyzer("ME0GeometryValidate",
0023                                infileName = cms.untracked.string('cmsRecoGeom-2026.root'),
0024                                outfileName = cms.untracked.string('validateME0GeometryOldDD.root'),
0025                                tolerance = cms.untracked.int32(7)
0026                                )
0027 
0028 process.p = cms.Path(process.valid)