CMS 3D CMS Logo

L1THCALTPG_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from DQM.L1TMonitor.L1THCALTPG_cfi import *
00004 hcalunpacker = cms.EDFilter("HcalRawToDigi",
00005     # Optional filter to remove any digi with "data valid" off, "error" on, 
00006     # or capids not rotating
00007     FilterDataQuality = cms.bool(True),
00008     # Do not complain about missing FEDs
00009     ExceptionEmptyData = cms.untracked.bool(False),
00010     HcalFirstFED = cms.untracked.int32(700),
00011     InputLabel = cms.InputTag("source"),
00012     # Use the defaults for FED numbers
00013     # Do not complain about missing FEDs
00014     ComplainEmptyData = cms.untracked.bool(False),
00015     # Flag to enable unpacking of calibration channels (default = false)
00016     UnpackCalib = cms.untracked.bool(False),
00017     FEDs = cms.untracked.vint32(719, 721, 723),
00018     lastSample = cms.int32(9),
00019     # At most ten samples can be put into a digi, if there are more
00020     # than ten, firstSample and lastSample select which samples
00021     # will be copied to the digi
00022     firstSample = cms.int32(0)
00023 )
00024 
00025 HcalDbProducer = cms.ESProducer("HcalDbProducer")
00026 
00027 es_hardcode = cms.ESSource("HcalHardcodeCalibrations",
00028     toGet = cms.untracked.vstring('Gains', 
00029         'GainWidths', 
00030         'QIEShape', 
00031         'QIEData', 
00032         'ChannelQuality')
00033 )
00034 
00035 es_ascii = cms.ESSource("HcalTextCalibrations",
00036     input = cms.VPSet(cms.PSet(
00037         object = cms.string('Pedestals'),
00038         file = cms.FileInPath('DQM/HcalMonitorModule/test/peds_ADC_hfplus_000269.txt')
00039     ), 
00040         cms.PSet(
00041             object = cms.string('PedestalWidths'),
00042             file = cms.FileInPath('DQM/HcalMonitorModule/test/widths_ADC_hfplus_000269.txt')
00043         ), 
00044         cms.PSet(
00045             object = cms.string('ElectronicsMap'),
00046             file = cms.FileInPath('DQM/HcalMonitorModule/data/test_tp_map.txt')
00047         ))
00048 )
00049 
00050 l1thcaltpgpath = cms.Path(hcalunpacker*l1thcaltpg)
00051 

Generated on Tue Jun 9 17:33:10 2009 for CMSSW by  doxygen 1.5.4