File indexing completed on 2022-01-24 01:14:55
0001
0002
0003
0004
0005
0006
0007
0008 import FWCore.ParameterSet.Config as cms
0009 import os, sys, imp, re
0010 import FWCore.ParameterSet.VarParsing as VarParsing
0011
0012
0013
0014 options = VarParsing.VarParsing('standard')
0015 options.register('geometry',
0016 "2021",
0017 VarParsing.VarParsing.multiplicity.singleton,
0018 VarParsing.VarParsing.varType.string,
0019 "geometry of operations: 2016, 2018, 2021")
0020 options.register('tol',
0021 0.1,
0022 VarParsing.VarParsing.multiplicity.singleton,
0023 VarParsing.VarParsing.varType.float,
0024 "Tolerance for checking overlaps: 0.0, 0.01, 0.1, 1.0"
0025 )
0026
0027
0028 options.parseArguments()
0029
0030 print(options)
0031
0032
0033
0034
0035 if (options.geometry == "2016"):
0036 from Configuration.Eras.Era_Run2_2016_cff import Run2_2016
0037 process = cms.Process('G4PrintGeometry',Run2_2016)
0038 process.load('Configuration.Geometry.GeometryExtended2016Reco_cff')
0039 baseName = 'cms2016'
0040 elif (options.geometry == "2018"):
0041 from Configuration.Eras.Era_Run2_2018_cff import Run2_2018
0042 process = cms.Process('G4PrintGeometry',Run2_2018)
0043 process.load('Configuration.Geometry.GeometryExtended2018Reco_cff')
0044 baseName = 'cms2018'
0045 else:
0046 from Configuration.Eras.Era_Run3_DDD_cff import Run3_DDD
0047 process = cms.Process('G4PrintGeometry',Run3_DDD)
0048 process.load('Configuration.Geometry.GeometryExtended2021Reco_cff')
0049 baseName = 'cms2021'
0050
0051 print("Base file Name: ", baseName)
0052
0053 process.load('FWCore.MessageService.MessageLogger_cfi')
0054
0055
0056
0057
0058 from SimG4Core.PrintGeomInfo.g4TestGeometry_cfi import *
0059 process = checkOverlap(process)
0060
0061
0062 process.g4SimHits.CheckGeometry = True
0063
0064
0065 process.g4SimHits.G4CheckOverlap.OutputBaseName = cms.string(baseName)
0066 process.g4SimHits.G4CheckOverlap.OverlapFlag = cms.bool(True)
0067 process.g4SimHits.G4CheckOverlap.Tolerance = cms.double(options.tol)
0068 process.g4SimHits.G4CheckOverlap.Resolution = cms.int32(10000)
0069 process.g4SimHits.G4CheckOverlap.Depth = cms.int32(-1)
0070
0071 process.g4SimHits.G4CheckOverlap.RegionFlag = cms.bool(False)
0072
0073 process.g4SimHits.G4CheckOverlap.NodeNames = cms.vstring('OCMS')
0074
0075 process.g4SimHits.G4CheckOverlap.gdmlFlag = cms.bool(False)
0076
0077 process.g4SimHits.G4CheckOverlap.PVname = ''
0078
0079 process.g4SimHits.G4CheckOverlap.LVname = ''
0080
0081
0082 process.g4SimHits.FileNameField = ''
0083 process.g4SimHits.FileNameGDML = ''
0084 process.g4SimHits.FileNameRegions = ''
0085