Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 # Unit test configuration file for MessageLogger service:
0002 # Intentional long header lines, to test the non-breaking behavior
0003 # Intended to run with code with EDM_ML_DEBUG defined
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(enable = cms.untracked.bool(False)),
0016     files = cms.untracked.PSet(
0017       u19d_infos = cms.untracked.PSet(
0018           threshold = cms.untracked.string('INFO'),
0019           noTimeStamps = cms.untracked.bool(True),
0020           FwkTest = cms.untracked.PSet(
0021               limit = cms.untracked.int32(0)
0022           ),
0023           preEventProcessing = cms.untracked.PSet(
0024               limit = cms.untracked.int32(0)
0025           )
0026       ),
0027       u19d_debugs = cms.untracked.PSet(
0028           threshold = cms.untracked.string('DEBUG'),
0029           noTimeStamps = cms.untracked.bool(True),
0030           FwkTest = cms.untracked.PSet(
0031               limit = cms.untracked.int32(0)
0032           ),
0033           preEventProcessing = cms.untracked.PSet(
0034               limit = cms.untracked.int32(0)
0035           )
0036       )
0037     ),
0038     debugModules = cms.untracked.vstring('*')
0039 )
0040 
0041 process.maxEvents = cms.untracked.PSet(
0042     input = cms.untracked.int32(2)
0043 )
0044 
0045 process.source = cms.Source("EmptySource")
0046 
0047 process.sendSomeMessages = cms.EDAnalyzer("UnitTestClient_Nd")
0048 
0049 process.p = cms.Path(process.sendSomeMessages)