CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalTBWriter_cfi.py
Go to the documentation of this file.
1 # The following comments couldn't be translated into the new config version:
2 
3 # FED id
4 
5 # Branch name
6 
7 # FED id
8 
9 # Branch name
10 
11 import FWCore.ParameterSet.Config as cms
12 
13 hcalTBWriter = cms.EDAnalyzer("HcalTBWriter",
14  fedRawDataCollectionTag = cms.InputTag('rawDataCollector'),
15  # Pattern for output filenames (%d will be replaced by run number)
16  FilenamePattern = cms.untracked.string('/data/spool/HTB_%06d.root'),
17  # Map of FED-ids to Branch names for the writer
18  ChunkNames = cms.untracked.VPSet(cms.PSet(
19  Number = cms.untracked.int32(1),
20  Name = cms.untracked.string('HCAL_Trigger')
21  ),
22  cms.PSet(
23  Number = cms.untracked.int32(20),
24  Name = cms.untracked.string('HCAL_DCC020')
25  ))
26 )
27 
28