Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:17

0001 ###############################################################################
0002 # Way to use this:
0003 #   cmsRun dumpGE0_cfg.py geometry=GE0
0004 #
0005 #   Options for geometry GE0, Mu24
0006 #
0007 ###############################################################################
0008 import FWCore.ParameterSet.Config as cms
0009 import os, sys, importlib, re
0010 import FWCore.ParameterSet.VarParsing as VarParsing
0011 
0012 ####################################################################
0013 ### SETUP OPTIONS
0014 options = VarParsing.VarParsing('standard')
0015 options.register('geometry',
0016                  "GE0",
0017                   VarParsing.VarParsing.multiplicity.singleton,
0018                   VarParsing.VarParsing.varType.string,
0019                   "geometry of operations: GE0, Mu24")
0020 
0021 ### get and parse the command line arguments
0022 options.parseArguments()
0023 
0024 print(options)
0025 
0026 ####################################################################
0027 # Use the options
0028 geomName = "Geometry.MuonCommonData.test" + options.geometry + "XML_cfi"
0029 outFile = options.geometry + "DDD.root"
0030 
0031 print("Geometry file: ", geomName)
0032 print("Geometry file: ", outFile)
0033 
0034 from Configuration.Eras.Era_Run3_DDD_cff import Run3_DDD
0035 process = cms.Process('Dump',Run3_DDD)
0036 
0037 process.load(geomName)
0038 process.load('FWCore.MessageService.MessageLogger_cfi')
0039 
0040 if 'MessageLogger' in process.__dict__:
0041     process.MessageLogger.G4cerr=dict()
0042     process.MessageLogger.G4cout=dict()
0043     process.MessageLogger.MuonGeom=dict()
0044 
0045 process.source = cms.Source("EmptySource")
0046 
0047 process.maxEvents = cms.untracked.PSet(
0048     input = cms.untracked.int32(1)
0049 )
0050 
0051 process.add_(cms.ESProducer("TGeoMgrFromDdd",
0052         verbose = cms.untracked.bool(False),
0053         level   = cms.untracked.int32(14)
0054 ))
0055 
0056 
0057 process.dump = cms.EDAnalyzer("DumpSimGeometry",
0058                               outputFileName = cms.untracked.string(outFile)
0059 )
0060 
0061 process.p = cms.Path(process.dump)