/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/APEEstimation/test/plottingTools/drawIterations.py
17 строк
513 B
mteroerd
Added trend plots, threading in autoSubmitter, fixed some bugs
31 июл 2019, 17:29
31 июл 2019, 17:29
c11c763
Код
Авторство
О чём код?
# Implementation to draw all iterations of an APE measurement # to check convergence from iterationsPlotter import * from granularity import * import os try: base = os.environ['CMSSW_BASE']+"/src/Alignment/APEEstimation" except KeyError: base = "" plot = IterationsPlotter() plot.setOutputPath(base+"/hists/iterations/") plot.setInputFile(base+"/src/Alignment/APEEstimation/hists/workingArea/iter14/allData_iterationApe.root") plot.setTitle("Title") plot.setGranularity(standardGranularity) plot.draw()