CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/GeneratorInterface/LHEInterface/python/customiseMCDBCheck_cff.py

Go to the documentation of this file.
00001 def customiseMCDBCheck(process):
00002 
00003     process.MessageLogger.categories=cms.untracked.vstring('FwkJob'
00004                                                            ,'FwkReport'
00005                                                            ,'FwkSummary'
00006                                                            ,'Root_NoDictionary'
00007                                                            ,'Generator'
00008                                                            ,'LHEInterface'
00009                                                            )
00010     
00011 
00012     process.MessageLogger.cerr.INFO = cms.untracked.PSet(limit = cms.untracked.int32(-1))
00013     process.MessageLogger.cerr.Generator = cms.untracked.PSet(limit = cms.untracked.int32(0))
00014     process.MessageLogger.cerr.LHEInterface = cms.untracked.PSet(limit = cms.untracked.int32(10000))
00015     process.MessageLogger.cerr.FwkReport.reportEvery = cms.untracked.int32(10000)
00016 
00017     #Add these 3 lines to put back the summary for timing information at the end of the logfile
00018     #(needed for TimeReport report)
00019     process.options = cms.untracked.PSet(
00020         wantSummary = cms.untracked.bool(True)
00021         )
00022 
00023         
00024     return(process)