Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 process = cms.Process("HEXDISPLAY")
00004
00005 process.load("CaloOnlineTools.EcalTools.ecalHexDisplay_cfi")
00006
00007 process.source = cms.Source("PoolSource",
00008 skipEvents = cms.untracked.uint32(0),
00009
00010
00011 fileNames = cms.untracked.vstring('file:/data/scooper/data/cruzet3/7E738216-584D-DD11-9209-000423D6AF24.root')
00012 )
00013
00014 process.maxEvents = cms.untracked.PSet(
00015 input = cms.untracked.int32(15)
00016 )
00017
00018 process.counter = cms.OutputModule("AsciiOutputModule")
00019
00020 process.MessageLogger = cms.Service("MessageLogger",
00021 cout = cms.untracked.PSet(
00022 threshold = cms.untracked.string('WARNING'),
00023 default = cms.untracked.PSet(
00024 limit = cms.untracked.int32(0)
00025 )
00026 ),
00027 destinations = cms.untracked.vstring('cout')
00028 )
00029
00030 process.p = cms.Path(process.hexDump)
00031 process.ep = cms.EndPath(process.counter)
00032