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  # Pattern for output filenames (%d will be replaced by run number)
15  FilenamePattern = cms.untracked.string('/data/spool/HTB_%06d.root'),
16  # Map of FED-ids to Branch names for the writer
17  ChunkNames = cms.untracked.VPSet(cms.PSet(
18  Number = cms.untracked.int32(1),
19  Name = cms.untracked.string('HCAL_Trigger')
20  ),
21  cms.PSet(
22  Number = cms.untracked.int32(20),
23  Name = cms.untracked.string('HCAL_DCC020')
24  ))
25 )
26 
27