/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/CommonAlignmentAlgorithm/python/SiPixelLorentzAngleCalibration_cff.py
24 строки
1 KB
Gregor Mittag
Add configuration parameter to pick a specific label for Lorentz angle record.
21 мар 2018, 19:31
21 мар 2018, 19:31
4749343
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms SiPixelLorentzAngleCalibration = cms.PSet( # Name that is bound to the SiPixelLorentzAngleCalibration, defined by # the DEFINE_EDM_PLUGIN macro in SiPixelLorentzAngleCalibration.cc: calibrationName = cms.string('SiPixelLorentzAngleCalibration'), # Configuration parameters of SiPixelLorentzAngleCalibration treeFile = cms.string('treeFile.root'), # to store Lorentz angle values (in-&output) mergeTreeFiles = cms.vstring(), # files with input/output from various parallel jobs saveToDB = cms.bool(False), # save result in poolDBOutputService # If we save to DB, the recordNameDBwrite must match what is specified # as 'record' in the PoolDBOutputService: recordNameDBwrite = cms.string('SiPixelLorentzAngleRcd'), # Configuration of the granularity for the Lorentz angle calibration LorentzAngleModuleGroups = cms.PSet(), # depending on the TTRHBuilder one has to use different # 'SiPixelLorentzAngleRcd' flavors, e.g. when using template hit # reconstruction one has to use "fromAlignment" and for the generic version # one directly uses the unlabelled version, i.e. "" lorentzAngleLabel = cms.string("fromAlignment"), )