CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
g4TestOverlap_cfg.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #------------------------------------------------------------
4 # This is a test of overlaps which use only Geant4 tool.
5 # To start it names of Physical volumes should be provides.
6 # It is possible to check overlap check parameters.
7 # Static build of Geant4 may be used
8 #------------------------------------------------------------
9 
11 
12 process.g4SimHits.CheckOverlap = True
13 process.g4SimHits.G4CheckOverlap = cms.PSet(
14  NodeNames = cms.vstring('ECAL'),
15  Tolerance = cms.untracked.double(0.0001), # in mm
16  Resolution = cms.untracked.int32(10000),
17  ErrorThreshold = cms.untracked.int32(1),
18  Level = cms.untracked.int32(0),
19  Depth = cms.untracked.int32(-1),
20  Verbose = cms.untracked.bool(True)
21 )
22