/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
MagneticField/GeomBuilder/test/python/mfxmlwriter.py
81 строка
3 KB
Carl Vuosalo
Condensed commit for mf geom builder migration to DD4hep
05 сен 2019, 22:04
05 сен 2019, 22:04
957d80d
Код
Авторство
О чём код?
### ### Dump a full geometry into a single xml file. ### import FWCore.ParameterSet.Config as cms process = cms.Process("MagneticFieldXMLWriter") process.load("CondCore.DBCommon.CondDBCommon_cfi") #process.load('Configuration.Geometry.MagneticFieldGeometry_cff') #GEOMETRY_VERSION = 90322 #GEOMETRY_VERSION = 120812 #GEOMETRY_VERSION = 130503 GEOMETRY_VERSION = 160812 if (GEOMETRY_VERSION == 90322) : # Note: Version 90322 and 71212 are identical. process.XMLIdealGeometryESSource = cms.ESSource("XMLIdealGeometryESSource", geomXMLFiles = cms.vstring('Geometry/CMSCommonData/data/normal/cmsextent.xml', 'Geometry/CMSCommonData/data/cms.xml', 'Geometry/CMSCommonData/data/cmsMagneticField.xml', 'MagneticField/GeomBuilder/data/MagneticFieldVolumes_1103l.xml', 'Geometry/CMSCommonData/data/materials.xml'), rootNodeName = cms.string('cmsMagneticField:MAGF') ) elif (GEOMETRY_VERSION == 120812) : # Note: material description is for the large YE4 version process.XMLIdealGeometryESSource = cms.ESSource("XMLIdealGeometryESSource", geomXMLFiles = cms.vstring('Geometry/CMSCommonData/data/normal/cmsextent.xml', 'Geometry/CMSCommonData/data/cms.xml', 'Geometry/CMSCommonData/data/cmsMagneticField.xml', 'MagneticField/GeomBuilder/data/MagneticFieldVolumes_1_v7_large.xml', 'MagneticField/GeomBuilder/data/MagneticFieldVolumes_2_v7_large.xml', 'Geometry/CMSCommonData/data/materials.xml'), rootNodeName = cms.string('cmsMagneticField:MAGF') ) elif (GEOMETRY_VERSION == 130503) : # Note: material description is for the large YE4 version process.XMLIdealGeometryESSource = cms.ESSource("XMLIdealGeometryESSource", geomXMLFiles = cms.vstring('Geometry/CMSCommonData/data/normal/cmsextent.xml', 'Geometry/CMSCommonData/data/cms.xml', 'Geometry/CMSCommonData/data/cmsMagneticField.xml', 'MagneticField/GeomBuilder/data/MagneticFieldVolumes_1_v9_large.xml', 'MagneticField/GeomBuilder/data/MagneticFieldVolumes_2_v9_large.xml', 'Geometry/CMSCommonData/data/materials.xml'), rootNodeName = cms.string('cmsMagneticField:MAGF') ) elif (GEOMETRY_VERSION == 160812) : # Note: material description is for the large YE4 version process.XMLIdealGeometryESSource = cms.ESSource("XMLIdealGeometryESSource", geomXMLFiles = cms.vstring('Geometry/CMSCommonData/data/normal/cmsextent.xml', 'Geometry/CMSCommonData/data/cms.xml', 'Geometry/CMSCommonData/data/cmsMagneticField.xml', 'MagneticField/GeomBuilder/data/MagneticFieldVolumes_160812_1.xml', 'MagneticField/GeomBuilder/data/MagneticFieldVolumes_160812_2.xml', 'Geometry/CMSCommonData/data/materials.xml'), rootNodeName = cms.string('cmsMagneticField:MAGF') ) process.source = cms.Source("EmptyIOVSource", lastValue = cms.uint64(1), timetype = cms.string('runnumber'), firstValue = cms.uint64(1), interval = cms.uint64(1) ) process.BigXMLWriter = cms.EDAnalyzer("OutputMagneticFieldDDToDDL", rotNumSeed = cms.int32(0), fileName = cms.untracked.string("./mfGeometry_"+str(GEOMETRY_VERSION)+".xml") ) process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(1) ) process.p1 = cms.Path(process.BigXMLWriter)