Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:10:32

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 source = cms.Source("HcalTBSource",
0004     # Number of events to read (-1 for all events)
0005     maxEvents = cms.untracked.int32(100),
0006     #* Streams or tree branches to open.  Usual branches include
0007     #  HCAL_Trigger, HCAL_SlowData, HCAL_TDC, HCAL_QDC, HCAL_TDCQDC,
0008     #  HCAL_SourcePos, HCAL_DCC020, etc.
0009     #  If a stream must be remapped to a different FED id, this can be
0010     #  done by appending ":[new fedid]" to the branch name
0011     #*/
0012     streams = cms.untracked.vstring('HCAL_Trigger', 
0013         'HCAL_DCC020', 
0014         'HCAL_SlowData:3', 
0015         'HCAL_TDC:5'),
0016     # Files to read (can use dcap:, file:, etc)
0017     fileNames = cms.untracked.vstring('file:HTB_011609.root')
0018 )
0019 
0020