File indexing completed on 2024-04-06 12:14:38
0001
0002
0003
0004
0005
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
0014 options = VarParsing.VarParsing('standard')
0015 options.register('type',
0016 "ZDCV2",
0017 VarParsing.VarParsing.multiplicity.singleton,
0018 VarParsing.VarParsing.varType.string,
0019 "geometry of operations: ZDCV2, ZDC")
0020
0021 options.parseArguments()
0022
0023 print(options)
0024
0025
0026
0027 geomFile = "Geometry.ForwardCommonData.test" + options.type + "XML_cfi"
0028 outFile = options.type + ".root"
0029
0030 from Configuration.Eras.Era_Run3_DDD_cff import Run3_DDD
0031 process = cms.Process("Dump",Run3_DDD)
0032
0033 print("Geom file Name: ", geomFile)
0034 print("Output file Name: ", outFile)
0035
0036 process.load('FWCore.MessageService.MessageLogger_cfi')
0037 process.load(geomFile)
0038
0039 if 'MessageLogger' in process.__dict__:
0040 process.MessageLogger.G4cerr=dict()
0041 process.MessageLogger.G4cout=dict()
0042
0043 process.MessageLogger.TGeoMgrFromDdd=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 process.dump = cms.EDAnalyzer("DumpSimGeometry",
0057 outputFileName = cms.untracked.string(outFile))
0058
0059 process.p = cms.Path(process.dump)