Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-08-02 22:54:48

0001 ###############################################################################
0002 # Way to use this:
0003 #   cmsRun g4OverlapCheck_cfg.py type=V17 tol=0.01
0004 #
0005 #   Options for type V16, V17, V17ng, V18, Wafer, WaferFR, WaferPR
0006 #               tol 1.0, 0.1, 0.01, 0.0
0007 #
0008 ###############################################################################
0009 import FWCore.ParameterSet.Config as cms
0010 import os, sys, imp, re
0011 import FWCore.ParameterSet.VarParsing as VarParsing
0012 
0013 ####################################################################
0014 ### SETUP OPTIONS
0015 options = VarParsing.VarParsing('standard')
0016 options.register('type',
0017                  "V17",
0018                   VarParsing.VarParsing.multiplicity.singleton,
0019                   VarParsing.VarParsing.varType.string,
0020                   "type of operations: V16, V17, V7ng, V18, Wafer, WaferFR, WaferPR")
0021 options.register('tol',
0022                  0.01,
0023                  VarParsing.VarParsing.multiplicity.singleton,
0024                  VarParsing.VarParsing.varType.float,
0025                  "Tolerance for checking overlaps: 0.0, 0.01, 0.1, 1.0")
0026 
0027 ### get and parse the command line arguments
0028 options.parseArguments()
0029 print(options)
0030 
0031 from Configuration.Eras.Era_Phase2C17I13M9_cff import Phase2C17I13M9
0032 
0033 process = cms.Process("OverlapCheck",Phase2C17I13M9)
0034 
0035 ####################################################################
0036 # Use the options
0037 geomFile = "Geometry.HGCalCommonData.testHGCal" + options.type + "XML_cfi"
0038 outFile = "hgcal" + options.type + str(options.tol)
0039 
0040 print("Geometry file: ", geomFile)
0041 print("Output file:   ", outFile)
0042 
0043 process.load('FWCore.MessageService.MessageLogger_cfi')
0044 process.load(geomFile)
0045 process.load('Geometry.TrackerNumberingBuilder.trackerNumberingGeometry_cff')
0046 process.load('SLHCUpgradeSimulations.Geometry.fakePhase2OuterTrackerConditions_cff')
0047 process.load('Geometry.EcalCommonData.ecalSimulationParameters_cff')
0048 process.load('Geometry.HcalCommonData.hcalDDDSimConstants_cff')
0049 process.load('Geometry.HGCalCommonData.hgcalParametersInitialization_cfi')
0050 process.load('Geometry.HGCalCommonData.hgcalNumberingInitialization_cfi')
0051 process.load('Geometry.MuonNumbering.muonGeometryConstants_cff')
0052 process.load('Geometry.MuonNumbering.muonOffsetESProducer_cff')
0053 process.load('Geometry.MTDNumberingBuilder.mtdNumberingGeometry_cff')
0054 
0055 if hasattr(process,'MessageLogger'):
0056 #    process.MessageLogger.SimG4CoreGeometry=dict()
0057     process.MessageLogger.HGCalGeom=dict()
0058 
0059 from SimG4Core.PrintGeomInfo.g4TestGeometry_cfi import *
0060 process = checkOverlap(process)
0061 
0062 # enable Geant4 overlap check 
0063 process.g4SimHits.CheckGeometry = True
0064 
0065 # Geant4 geometry check 
0066 process.g4SimHits.G4CheckOverlap.OutputBaseName = outFile
0067 process.g4SimHits.G4CheckOverlap.OverlapFlag = True
0068 process.g4SimHits.G4CheckOverlap.Tolerance  = options.tol
0069 process.g4SimHits.G4CheckOverlap.Resolution = 10000
0070 process.g4SimHits.G4CheckOverlap.Depth      = -1
0071 # tells if NodeName is G4Region or G4PhysicalVolume
0072 process.g4SimHits.G4CheckOverlap.RegionFlag = False
0073 # list of names
0074 process.g4SimHits.G4CheckOverlap.NodeNames  = ['OCMS']
0075 # enable dump gdml file 
0076 process.g4SimHits.G4CheckOverlap.gdmlFlag   = False
0077 # if defined a G4PhysicsVolume info is printed
0078 process.g4SimHits.G4CheckOverlap.PVname     = ''
0079 # if defined a list of daughter volumes is printed
0080 process.g4SimHits.G4CheckOverlap.LVname     = ''
0081 
0082 # extra output files, created if a name is not empty
0083 process.g4SimHits.FileNameField   = ''
0084 process.g4SimHits.FileNameGDML    = ''
0085 process.g4SimHits.FileNameRegions = ''
0086 #