Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:56:09

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 SiStripBackplaneCalibration = cms.PSet(
0004     # Name that is bound to the SiStripBackplaneCalibration, defined by 
0005     # the DEFINE_EDM_PLUGIN macro in SiStripBackplaneCalibration.cc:
0006     calibrationName = cms.string('SiStripBackplaneCalibration'),
0007 
0008     # Configuration parameters of BackplaneCalibration
0009     readoutMode = cms.string('deconvolution'), # 'peak' is reference, so do not change this
0010     treeFile = cms.string('treeFile.root'), # to store backplane correction values (in-&output)
0011     mergeTreeFiles = cms.vstring(), # files with input/output from various parallel jobs
0012     saveToDB = cms.bool(False), # save result in poolDBOutputService
0013     # If we save to DB, the recordNameDBwrite must match what is specified
0014     # as 'record' in the PoolDBOutputService:
0015     recordNameDBwrite = cms.string('SiStripBackPlaneCorrectionRcd'),
0016 
0017     # Configuration of the granularity for the backplane correction determination
0018     BackplaneModuleGroups = cms.PSet(),
0019     )