Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:12:48

0001 # Unit test configuration file for MessageLogger service:
0002 # statistics destination :  output name specified; 
0003 # threshold for statistics destination
0004 
0005 import FWCore.ParameterSet.Config as cms
0006 
0007 process = cms.Process("TEST")
0008 
0009 import FWCore.Framework.test.cmsExceptionsFatal_cff
0010 process.options = FWCore.Framework.test.cmsExceptionsFatal_cff.options
0011 
0012 process.load("FWCore.MessageService.test.Services_cff")
0013 
0014 process.MessageLogger = cms.Service("MessageLogger",
0015     cerr = cms.untracked.PSet(
0016         enable = cms.untracked.bool(False)
0017     ),
0018     files = cms.untracked.PSet(
0019         u4_statistics = cms.untracked.PSet(
0020             threshold = cms.untracked.string('WARNING'),
0021             default = cms.untracked.PSet(
0022               limit = cms.untracked.int32(0)
0023             ),
0024             enableStatistics = cms.untracked.bool(True)
0025         ),
0026         u4_errors = cms.untracked.PSet(
0027             threshold = cms.untracked.string('ERROR'),
0028             noTimeStamps = cms.untracked.bool(True),
0029             enableStatistics = cms.untracked.bool(True)
0030         ),
0031         anotherStats = cms.untracked.PSet(
0032             output = cms.untracked.string('u4_another'),
0033             enableStatistics = cms.untracked.bool(True),
0034             default = cms.untracked.PSet(
0035               limit = cms.untracked.int32(0)
0036             )
0037         )
0038     )
0039 )
0040 
0041 process.maxEvents = cms.untracked.PSet(
0042     input = cms.untracked.int32(3)
0043 )
0044 
0045 process.source = cms.Source("EmptySource")
0046 
0047 process.sendSomeMessages = cms.EDAnalyzer("UnitTestClient_A")
0048 
0049 process.p = cms.Path(process.sendSomeMessages)