/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Geometry/GEMGeometryBuilder/test/python/validateME0GeometryOldDD_cfg.py
28 строк
1 KB
Sunanda
Modify the ESProducer for GEM/ME0 to work better for ddd/dd4hep
29 май 2020, 15:58
29 май 2020, 15:58
12b8cd0
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms process = cms.Process('VALID') process.source = cms.Source('EmptySource') process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(1) ) process.load('Configuration.Geometry.GeometryExtended2026D41_cff') process.load("FWCore.MessageLogger.MessageLogger_cfi") process.load("Geometry.MuonNumbering.muonGeometryConstants_cff") process.load("Geometry.GEMGeometryBuilder.me0Geometry_cff") # # Note: Please, download the geometry file from a location # specified by Fireworks/Geometry/data/download.url # For example: cmsRun $CMSSW_RELEASE_BASE/src/Fireworks/Geometry/python/dumpRecoGeometry_cfg.py tag=2026 version=D49 # # process.valid = cms.EDAnalyzer("ME0GeometryValidate", infileName = cms.untracked.string('cmsRecoGeom-2026.root'), outfileName = cms.untracked.string('validateME0GeometryOldDD.root'), tolerance = cms.untracked.int32(7) ) process.p = cms.Path(process.valid)