File indexing completed on 2025-02-07 14:23:48
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def InitRootHandlers(*args, **kwargs):
0004 mod = cms.Service('InitRootHandlers',
0005 UnloadRootSigHandler = cms.untracked.bool(False),
0006 ResetRootErrHandler = cms.untracked.bool(True),
0007 AutoLibraryLoader = cms.untracked.bool(True),
0008 AutoClassParser = cms.untracked.bool(True),
0009 LoadAllDictionaries = cms.untracked.bool(False),
0010 EnableIMT = cms.untracked.bool(True),
0011 AbortOnSignal = cms.untracked.bool(True),
0012 InteractiveDebug = cms.untracked.bool(False),
0013 DebugLevel = cms.untracked.int32(0),
0014 StackTracePauseTime = cms.untracked.int32(300)
0015 )
0016 for a in args:
0017 mod.update_(a)
0018 mod.update_(kwargs)
0019 return mod