Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:22:25

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("dump")
0004 
0005 #process.load("L1TriggerConfig.RPCTriggerConfig.RPCConeDefinition_cff")
0006 
0007 useGlobalTag = 'IDEAL_31X'
0008 process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
0009 process.GlobalTag.globaltag = useGlobalTag + '::All'
0010 
0011 
0012 #process.MessageLogger = cms.Service("MessageLogger",
0013 #    log = cms.untracked.PSet( threshold = cms.untracked.string("DEBUG") ),
0014 #    debugModules = cms.untracked.vstring("DumpConeDefinition"),
0015 #    destinations = cms.untracked.vstring('logDumpConeDefinition')
0016 #)
0017 
0018 process.load('FWCore.MessageService.MessageLogger_cfi')
0019 process.MessageLogger.debugModules = ['*']
0020 process.MessageLogger.cout = cms.untracked.PSet(
0021     threshold=cms.untracked.string('DEBUG'),
0022     #threshold = cms.untracked.string('INFO'),
0023     #threshold = cms.untracked.string('ERROR'),
0024     DEBUG=cms.untracked.PSet(
0025         limit=cms.untracked.int32(-1)
0026     ),
0027     INFO=cms.untracked.PSet(
0028         limit=cms.untracked.int32(-1)
0029     ),
0030     WARNING=cms.untracked.PSet(
0031         limit=cms.untracked.int32(-1)
0032     ),
0033     ERROR=cms.untracked.PSet(
0034         limit=cms.untracked.int32(-1)
0035     ),
0036     default = cms.untracked.PSet(
0037         limit=cms.untracked.int32(-1)
0038     )
0039 )
0040 
0041 
0042 
0043 
0044 
0045 process.source = cms.Source("EmptySource")
0046 
0047 process.maxEvents = cms.untracked.PSet(
0048     input = cms.untracked.int32(1)
0049 )
0050 
0051 
0052 process.write = cms.EDAnalyzer("DumpConeDefinition")
0053 
0054 
0055 process.p1 = cms.Path(process.write)