Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 _category = cms.optional.untracked.PSetTemplate(
0004     reportEvery = cms.untracked.int32(1),
0005     limit = cms.optional.untracked.int32,
0006     timespan = cms.optional.untracked.int32
0007 )
0008 
0009 _destination_base = cms.untracked.PSet(
0010     noLineBreaks = cms.optional.untracked.bool,
0011     noTimeStamps = cms.optional.untracked.bool,
0012     lineLength = cms.optional.untracked.int32,
0013     threshold = cms.optional.untracked.string,
0014     statisticsThreshold = cms.optional.untracked.string,
0015     allowAnyLabel_ = _category
0016 )
0017 _destination_no_stat = _destination_base.clone(
0018     enableStatistics = cms.untracked.bool(False),
0019     resetStatistics = cms.untracked.bool(False)
0020 )
0021 
0022 _file_destination = cms.optional.untracked.PSetTemplate(
0023     noLineBreaks = cms.optional.untracked.bool,
0024     noTimeStamps = cms.optional.untracked.bool,
0025     lineLength = cms.optional.untracked.int32,
0026     threshold = cms.optional.untracked.string,
0027     statisticsThreshold = cms.optional.untracked.string,
0028     enableStatistics = cms.untracked.bool(False),
0029     resetStatistics = cms.untracked.bool(False),
0030     filename = cms.optional.untracked.string,
0031     extension = cms.optional.untracked.string,
0032     output = cms.optional.untracked.string,
0033     allowAnyLabel_ = _category
0034 )
0035 
0036 _default_pset = cms.untracked.PSet(
0037     reportEvery = cms.untracked.int32(1),
0038     limit = cms.optional.untracked.int32,
0039     timespan = cms.optional.untracked.int32,
0040 
0041     noLineBreaks = cms.untracked.bool(False),
0042     noTimeStamps = cms.untracked.bool(False),
0043     lineLength = cms.untracked.int32(80),
0044     threshold = cms.untracked.string("INFO"),
0045     statisticsThreshold = cms.untracked.string("INFO"),
0046     allowAnyLabel_ = _category
0047 )
0048 
0049 
0050 MessageLogger = cms.Service("MessageLogger",
0051     suppressWarning = cms.untracked.vstring(),
0052     suppressFwkInfo = cms.untracked.vstring(),
0053     suppressInfo = cms.untracked.vstring(),
0054     suppressDebug = cms.untracked.vstring(),
0055     debugModules = cms.untracked.vstring(),
0056     cout = _destination_no_stat.clone(
0057         enable = cms.untracked.bool(False)
0058         ),
0059     default = _default_pset.clone(),
0060     cerr = _destination_base.clone(
0061         enable = cms.untracked.bool(True),
0062         enableStatistics = cms.untracked.bool(True),
0063         resetStatistics = cms.untracked.bool(False),
0064         statisticsThreshold = cms.untracked.string('INFO'),
0065         INFO = cms.untracked.PSet(
0066             limit = cms.untracked.int32(5)
0067         ),
0068         noTimeStamps = cms.untracked.bool(False),
0069         FwkReport = cms.untracked.PSet(
0070             reportEvery = cms.untracked.int32(1),
0071             limit = cms.untracked.int32(10000000)
0072         ),
0073         default = cms.untracked.PSet(
0074             limit = cms.untracked.int32(10000000)
0075         ),
0076         Root_NoDictionary = cms.untracked.PSet(
0077             limit = cms.untracked.int32(0)
0078         ),
0079         FwkSummary = cms.untracked.PSet(
0080             reportEvery = cms.untracked.int32(1),
0081             limit = cms.untracked.int32(10000000)
0082         ),
0083         threshold = cms.untracked.string('INFO')
0084     ),
0085     files = cms.untracked.PSet(
0086         allowAnyLabel_ = _file_destination
0087     ),
0088     allowAnyLabel_ = _category
0089 )
0090 
0091