CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/IORawData/HcalTBInputService/python/HcalTBSource_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 source = cms.Source("HcalTBSource",
00004     # Number of events to read (-1 for all events)
00005     maxEvents = cms.untracked.int32(100),
00006     #* Streams or tree branches to open.  Usual branches include
00007     #  HCAL_Trigger, HCAL_SlowData, HCAL_TDC, HCAL_QDC, HCAL_TDCQDC,
00008     #  HCAL_SourcePos, HCAL_DCC020, etc.
00009     #  If a stream must be remapped to a different FED id, this can be
00010     #  done by appending ":[new fedid]" to the branch name
00011     #*/
00012     streams = cms.untracked.vstring('HCAL_Trigger', 
00013         'HCAL_DCC020', 
00014         'HCAL_SlowData:3', 
00015         'HCAL_TDC:5'),
00016     # Files to read (can use dcap:, file:, etc)
00017     fileNames = cms.untracked.vstring('file:HTB_011609.root')
00018 )
00019 
00020