Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:03:12

0001 # memory_t3.cfg
0002 # EXTERNAL Unit test configuration file for Memory service:
0003 # Module output to JobReport
0004 # output to JobReport
0005 
0006 import FWCore.ParameterSet.Config as cms
0007 
0008 process = cms.Process("TEST")
0009 
0010 import FWCore.Framework.test.cmsExceptionsFatal_cff
0011 process.options = FWCore.Framework.test.cmsExceptionsFatal_cff.options
0012 
0013 process.load("FWCore.MessageService.test.Services_cff")
0014 
0015 process.SimpleMemoryCheck = cms.Service("SimpleMemoryCheck",
0016     oncePerEventMode = cms.untracked.bool(False),
0017     showMallocInfo = cms.untracked.bool(False),
0018     ignoreTotal = cms.untracked.int32(10)
0019 )
0020 
0021 process.MessageLogger = cms.Service("MessageLogger",
0022     cerr = cms.untracked.PSet(
0023         enable = cms.untracked.bool(False)
0024     ),
0025     debugModules = cms.untracked.vstring('*'),
0026     files = cms.untracked.PSet(
0027         memory_t3_infos = cms.untracked.PSet(
0028 
0029         )
0030     ),
0031     o1_infos = cms.untracked.PSet(
0032         FwkReport = cms.untracked.PSet(
0033             limit = cms.untracked.int32(0)
0034         ),
0035         FwkTest = cms.untracked.PSet(
0036             limit = cms.untracked.int32(0)
0037         ),
0038         noTimeStamps = cms.untracked.bool(True),
0039         preEventProcessing = cms.untracked.PSet(
0040             limit = cms.untracked.int32(0)
0041         ),
0042         threshold = cms.untracked.string('INFO')
0043     )
0044 )
0045 
0046 process.maxEvents = cms.untracked.PSet(
0047     input = cms.untracked.int32(40)
0048 )
0049 
0050 process.source = cms.Source("EmptySource")
0051 
0052 process.module1 = cms.EDAnalyzer("MemoryTestClient_B",
0053     pattern = cms.untracked.int32(1)
0054 )
0055 
0056 process.module2 = cms.EDAnalyzer("MemoryTestClient_B",
0057     pattern = cms.untracked.int32(2)
0058 )
0059 
0060 process.module3 = cms.EDAnalyzer("MemoryTestClient_B",
0061     pattern = cms.untracked.int32(3)
0062 )
0063 
0064 process.module4 = cms.EDAnalyzer("MemoryTestClient_B",
0065     pattern = cms.untracked.int32(4)
0066 )
0067 
0068 process.p = cms.Path(process.module1*process.module2*process.module3*process.module4)