1 |
import FWCore.ParameterSet.Config as cms
|
2 |
|
3 |
SiStripBackplaneCalibration = cms.PSet(
|
4 |
# Name that is bound to the SiStripBackplaneCalibration, defined by
|
5 |
# the DEFINE_EDM_PLUGIN macro in SiStripBackplaneCalibration.cc:
|
6 |
calibrationName = cms.string('SiStripBackplaneCalibration'),
|
7 |
|
8 |
# Configuration parameters of BackplaneCalibration
|
9 |
readoutMode = cms.string('deconvolution'), # 'peak' is reference, so do not change this
|
10 |
treeFile = cms.string('treeFile.root'), # to store backplane correction values (in-&output)
|
11 |
mergeTreeFiles = cms.vstring(), # files with input/output from various parallel jobs
|
12 |
saveToDB = cms.bool(False), # save result in poolDBOutputService
|
13 |
# If we save to DB, the recordNameDBwrite must match what is specified
|
14 |
# as 'record' in the PoolDBOutputService:
|
15 |
recordNameDBwrite = cms.string('SiStripBackPlaneCorrectionRcd'),
|
16 |
|
17 |
# Configuration of the granularity for the backplane correction determination
|
18 |
BackplaneModuleGroups = cms.PSet(),
|
19 |
)
|