Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:14

0001 ###############################################################################
0002 # Way to use this:
0003 #   cmsRun g4OverlapCheck_cfg.py type=TB230FEB tol=0.01
0004 #
0005 #   Options for type TB230FEB, TB230Jul
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                  "TB230FEB",
0018                   VarParsing.VarParsing.multiplicity.singleton,
0019                   VarParsing.VarParsing.varType.string,
0020                   "type of operations: TB230FEB, TB230Jul")
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.HGCalTBCommonData.test" + 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.HGCalCommonData.hgcalEEParametersInitialization_cfi')
0046 process.load('Geometry.HGCalCommonData.hgcalEENumberingInitialization_cfi')
0047 process.load('Geometry.HcalTestBeamData.hcalTB06Parameters_cff')
0048 
0049 if hasattr(process,'MessageLogger'):
0050 #    process.MessageLogger.SimG4CoreGeometry=dict()
0051     process.MessageLogger.HGCalGeom=dict()
0052     process.MessageLogger.DDCompactViewImpl=dict()
0053 
0054 from SimG4Core.PrintGeomInfo.g4TestGeometry_cfi import *
0055 process = checkOverlap(process)
0056 
0057 # enable Geant4 overlap check 
0058 process.g4SimHits.CheckGeometry = True
0059 
0060 # Geant4 geometry check 
0061 process.g4SimHits.G4CheckOverlap.OutputBaseName = outFile
0062 process.g4SimHits.G4CheckOverlap.OverlapFlag = True
0063 process.g4SimHits.G4CheckOverlap.Tolerance  = options.tol
0064 process.g4SimHits.G4CheckOverlap.Resolution = 10000
0065 process.g4SimHits.G4CheckOverlap.Depth      = -1
0066 # tells if NodeName is G4Region or G4PhysicalVolume
0067 process.g4SimHits.G4CheckOverlap.RegionFlag = False
0068 # list of names
0069 process.g4SimHits.G4CheckOverlap.NodeNames  = ['OCMS']
0070 # enable dump gdml file 
0071 process.g4SimHits.G4CheckOverlap.gdmlFlag   = False
0072 # if defined a G4PhysicsVolume info is printed
0073 process.g4SimHits.G4CheckOverlap.PVname     = ''
0074 # if defined a list of daughter volumes is printed
0075 process.g4SimHits.G4CheckOverlap.LVname     = ''
0076 
0077 # extra output files, created if a name is not empty
0078 process.g4SimHits.FileNameField   = ''
0079 process.g4SimHits.FileNameGDML    = ''
0080 process.g4SimHits.FileNameRegions = ''
0081 #
0082 process.g4SimHits.OnlySDs = ['HGCalSensitiveDetector', 'HFNoseSensitiveDetector', 'HGCScintillatorSensitiveDetector', 'HcalTB06BeamDetector']