CMS 3D CMS Logo

ecalHexDisplay_cfg.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 process = cms.Process("HEXDISPLAY")
00004 process.source = cms.Source("PoolSource",
00005     skipEvents = cms.untracked.uint32(0),
00006     #untracked vstring fileNames = {'file:/data/scooper/data/grea07/40792E58-B757-DC11-8AB2-001617E30F46.root'}
00007     fileNames = cms.untracked.vstring('file:/data/scooper/data/gren07/P5_Co.00029485.A.0.0.root')
00008 )
00009 
00010 process.maxEvents = cms.untracked.PSet(
00011     input = cms.untracked.int32(150)
00012 )
00013 process.hexDump = cms.EDFilter("EcalHexDisplay",
00014     verbosity = cms.untracked.int32(0),
00015     filename = cms.untracked.string('dump.bin'),
00016     # fed_id: EE- is 601-609,  EB is 610-645,  EE- is 646-654
00017     # when using 'single sm' fed corresponds to construction number  
00018     beg_fed_id = cms.untracked.int32(0),
00019     writeDCC = cms.untracked.bool(False),
00020     end_fed_id = cms.untracked.int32(654)
00021 )
00022 
00023 process.counter = cms.OutputModule("AsciiOutputModule")
00024 
00025 process.MessageLogger = cms.Service("MessageLogger",
00026     cout = cms.untracked.PSet(
00027         threshold = cms.untracked.string('WARNING'),
00028         default = cms.untracked.PSet(
00029             limit = cms.untracked.int32(0)
00030         )
00031     ),
00032     destinations = cms.untracked.vstring('cout')
00033 )
00034 
00035 process.p = cms.Path(process.hexDump)
00036 process.ep = cms.EndPath(process.counter)
00037 

Generated on Tue Jun 9 17:25:54 2009 for CMSSW by  doxygen 1.5.4