CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalTBSource_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 source = cms.Source("HcalTBSource",
4  # Number of events to read (-1 for all events)
5  maxEvents = cms.untracked.int32(100),
6  #* Streams or tree branches to open. Usual branches include
7  # HCAL_Trigger, HCAL_SlowData, HCAL_TDC, HCAL_QDC, HCAL_TDCQDC,
8  # HCAL_SourcePos, HCAL_DCC020, etc.
9  # If a stream must be remapped to a different FED id, this can be
10  # done by appending ":[new fedid]" to the branch name
11  #*/
12  streams = cms.untracked.vstring('HCAL_Trigger',
13  'HCAL_DCC020',
14  'HCAL_SlowData:3',
15  'HCAL_TDC:5'),
16  # Files to read (can use dcap:, file:, etc)
17  fileNames = cms.untracked.vstring('file:HTB_011609.root')
18 )
19 
20