File indexing completed on 2024-04-06 12:31:57
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004
0005
0006
0007
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),
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