/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/CommonAlignmentAlgorithm/python/SiStripLorentzAngleCalibration_cff.py
24 строки
1 KB
Giulio Eulisse
Snapshot of CMSSW_6_2_0_pre8.
26 июн 2013, 18:12
26 июн 2013, 18:12
214ab73
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms SiStripLorentzAngleCalibration_peak = cms.PSet( # Name that is bound to the SiStripLorentzAngleCalibration, defined by # the DEFINE_EDM_PLUGIN macro in SiStripLorentzAngleCalibration.cc: calibrationName = cms.string('SiStripLorentzAngleCalibration'), # Configuration parameters of LorentzAngleCalibration readoutMode = cms.string('peak'), # peak or deconvolution 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('SiStripLorentzAngleRcd_peak'), # Configuration of the granularity for the Lorentz angle calibration LorentzAngleModuleGroups = cms.PSet(), ) SiStripLorentzAngleCalibration_deco = SiStripLorentzAngleCalibration_peak.clone( readoutMode = 'deconvolution', recordNameDBwrite = cms.string('SiStripLorentzAngleRcd_deco'), )