Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-30 04:10:44

0001 ###############################################################################
0002 # Way to use this:
0003 #   cmsRun g4OverlapCheckDDD_cfg.py geometry=2021 tol=0.1
0004 #
0005 #   Options for geometry 2016, 2017, 2018, 2021, 2023, 2024
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                  "2024",
0017                   VarParsing.VarParsing.multiplicity.singleton,
0018                   VarParsing.VarParsing.varType.string,
0019                   "geometry of operations: 2016, 2017, 2018, 2021, 2023, 2024")
0020 options.register('tol',
0021                  0.01,
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 ### get and parse the command line arguments
0028 options.parseArguments()
0029 
0030 print(options)
0031 
0032 ####################################################################
0033 # Use the options
0034 
0035 baseName = "cmsDDD" + options.geometry
0036 geomName = "Configuration.Geometry.GeometryExtended" + options.geometry + "Reco_cff"
0037 
0038 if (options.geometry == "2016"):
0039     from Configuration.Eras.Era_Run2_2016_cff import Run2_2016
0040     process = cms.Process('G4PrintGeometry',Run2_2016)
0041 elif (options.geometry == "2017"):
0042     from Configuration.Eras.Era_Run2_2017_cff import Run2_2017
0043     process = cms.Process('G4PrintGeometry',Run2_2017)
0044 elif (options.geometry == "2018"):
0045     from Configuration.Eras.Era_Run2_2018_cff import Run2_2018
0046     process = cms.Process('G4PrintGeometry',Run2_2018)
0047 else:
0048     from Configuration.Eras.Era_Run3_DDD_cff import Run3_DDD
0049     process = cms.Process('G4PrintGeometry',Run3_DDD)
0050 
0051 print("Base file Name: ", baseName)
0052 print("Geom file Name: ", geomName)
0053 
0054 process.load('FWCore.MessageService.MessageLogger_cfi')
0055 process.load(geomName)
0056 
0057 #if hasattr(process,'MessageLogger'):
0058 #    process.MessageLogger.HCalGeom=dict()
0059 
0060 from SimG4Core.PrintGeomInfo.g4TestGeometry_cfi import *
0061 process = checkOverlap(process)
0062 
0063 # enable Geant4 overlap check 
0064 process.g4SimHits.CheckGeometry = True
0065 
0066 # Geant4 geometry check 
0067 process.g4SimHits.G4CheckOverlap.OutputBaseName = cms.string(baseName)
0068 process.g4SimHits.G4CheckOverlap.OverlapFlag = cms.bool(True)
0069 process.g4SimHits.G4CheckOverlap.Tolerance  = cms.double(options.tol)
0070 process.g4SimHits.G4CheckOverlap.Resolution = cms.int32(10000)
0071 process.g4SimHits.G4CheckOverlap.Depth      = cms.int32(-1)
0072 # tells if NodeName is G4Region or G4PhysicalVolume
0073 process.g4SimHits.G4CheckOverlap.RegionFlag = cms.bool(False)
0074 # list of names
0075 process.g4SimHits.G4CheckOverlap.NodeNames  = cms.vstring('OCMS')
0076 # enable dump gdml file 
0077 process.g4SimHits.G4CheckOverlap.gdmlFlag   = cms.bool(False)
0078 # if defined a G4PhysicsVolume info is printed
0079 process.g4SimHits.G4CheckOverlap.PVname     = ''
0080 # if defined a list of daughter volumes is printed
0081 process.g4SimHits.G4CheckOverlap.LVname     = ''
0082 
0083 # extra output files, created if a name is not empty
0084 process.g4SimHits.FileNameField   = ''
0085 process.g4SimHits.FileNameGDML    = ''
0086 process.g4SimHits.FileNameRegions = ''
0087 #