Skip to content

Commit

Permalink
Modify the dumping for geometry vsiulation of HCAL
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunanda committed Nov 3, 2022
1 parent 69ee59f commit 5b514f3
Show file tree
Hide file tree
Showing 5 changed files with 119 additions and 89 deletions.
27 changes: 0 additions & 27 deletions Geometry/HcalCommonData/test/python/dump2016_cfg.py

This file was deleted.

30 changes: 0 additions & 30 deletions Geometry/HcalCommonData/test/python/dump2017DD4hep_cfg.py

This file was deleted.

32 changes: 0 additions & 32 deletions Geometry/HcalCommonData/test/python/dump2017DDD_cfg.py

This file was deleted.

60 changes: 60 additions & 0 deletions Geometry/HcalCommonData/test/python/dumpGeometryDD4hep_cfg.py
@@ -0,0 +1,60 @@
###############################################################################
# Way to use this:
# cmsRun dumpGeometryDD4hep_cfg.py geometry=2021
#
# Options for geometry 2017, 2018, 2021
#
###############################################################################
import FWCore.ParameterSet.Config as cms
import os, sys, imp, re
import FWCore.ParameterSet.VarParsing as VarParsing

####################################################################
### SETUP OPTIONS
options = VarParsing.VarParsing('standard')
options.register('geometry',
"2021",
VarParsing.VarParsing.multiplicity.singleton,
VarParsing.VarParsing.varType.string,
"geometry of operations: 2017, 2018, 2021")

### get and parse the command line arguments
options.parseArguments()

print(options)

####################################################################
# Use the options

from Configuration.ProcessModifiers.dd4hep_cff import dd4hep
process = cms.Process('GeomDump',dd4hep)

geomFile = "Configuration.Geometry.GeometryDD4hepExtended" + options.geometry + "Reco_cff"
fileName = "hcal" + options.geometry + "DD4hep.root"

print("Geometry file: ", geomFile)
print("Output file: ", fileName)

process.load(geomFile)
process.load('FWCore.MessageService.MessageLogger_cfi')

if 'MessageLogger' in process.__dict__:
process.MessageLogger.HCalGeom=dict()

process.source = cms.Source("EmptySource")

process.maxEvents = cms.untracked.PSet(
input = cms.untracked.int32(1)
)

process.add_(cms.ESProducer("TGeoMgrFromDdd",
verbose = cms.untracked.bool(False),
level = cms.untracked.int32(14)
))


process.dump = cms.EDAnalyzer("DumpSimGeometry",
outputFileName = cms.untracked.string(fileName)
)

process.p = cms.Path(process.dump)
59 changes: 59 additions & 0 deletions Geometry/HcalCommonData/test/python/dumpGeometryDDD_cfg.py
@@ -0,0 +1,59 @@
###############################################################################
# Way to use this:
# cmsRun dumpGeometryDDD_cfg.py geometry=2021
#
# Options for geometry 2015, 2016, 2017, 2018, 2021
#
###############################################################################
import FWCore.ParameterSet.Config as cms
import os, sys, imp, re
import FWCore.ParameterSet.VarParsing as VarParsing

####################################################################
### SETUP OPTIONS
options = VarParsing.VarParsing('standard')
options.register('geometry',
"2021",
VarParsing.VarParsing.multiplicity.singleton,
VarParsing.VarParsing.varType.string,
"geometry of operations: 2015, 2016, 2017, 2018, 2021")

### get and parse the command line arguments
options.parseArguments()

print(options)

####################################################################
# Use the options

process = cms.Process('GeomDump')

geomFile = "Configuration.Geometry.GeometryExtended" + options.geometry + "Reco_cff"
fileName = "hcal" + options.geometry + "DDD.root"

print("Geometry file: ", geomFile)
print("Output file: ", fileName)

process.load(geomFile)
process.load('FWCore.MessageService.MessageLogger_cfi')

if 'MessageLogger' in process.__dict__:
process.MessageLogger.HCalGeom=dict()

process.source = cms.Source("EmptySource")

process.maxEvents = cms.untracked.PSet(
input = cms.untracked.int32(1)
)

process.add_(cms.ESProducer("TGeoMgrFromDdd",
verbose = cms.untracked.bool(False),
level = cms.untracked.int32(14)
))


process.dump = cms.EDAnalyzer("DumpSimGeometry",
outputFileName = cms.untracked.string(fileName)
)

process.p = cms.Path(process.dump)

0 comments on commit 5b514f3

Please sign in to comment.