File indexing completed on 2025-02-07 14:23:56
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def AdaptorConfig(*args, **kwargs):
0004 mod = cms.Service('AdaptorConfig',
0005 enable = cms.optional.untracked.bool,
0006 stats = cms.optional.untracked.bool,
0007 cacheHint = cms.optional.untracked.string,
0008 readHint = cms.optional.untracked.string,
0009 tempDir = cms.optional.untracked.string,
0010 tempMinFree = cms.optional.untracked.double,
0011 native = cms.optional.untracked.vstring
0012 )
0013 for a in args:
0014 mod.update_(a)
0015 mod.update_(kwargs)
0016 return mod