Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:57

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #------------------------------------------------------------
0004 # This is a test of overlaps which use only Geant4 tool. 
0005 # To start it names of Physical volumes should be provides.
0006 # It is possible to check overlap check parameters. 
0007 # Static build of Geant4 may be used
0008 #------------------------------------------------------------
0009 
0010 from Validation.CheckOverlap.testOverlap_cff import *
0011 
0012 process.g4SimHits.CheckOverlap = True
0013 process.g4SimHits.G4CheckOverlap = cms.PSet(
0014     NodeNames = cms.vstring('ECAL'),
0015     Tolerance = cms.untracked.double(0.0001), # in mm
0016     Resolution = cms.untracked.int32(10000),
0017     ErrorThreshold = cms.untracked.int32(1),
0018     Level = cms.untracked.int32(0),
0019     Depth = cms.untracked.int32(-1),
0020     Verbose = cms.untracked.bool(True)
0021 )
0022