Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 5065868f authored by ulrich_y's avatar ulrich_y
Browse files

2: added bare exportvegas with defaults towards #12

parent 9a87c38d
No related branches found
No related tags found
No related merge requests found
...@@ -15,14 +15,14 @@ __all__ = [ ...@@ -15,14 +15,14 @@ __all__ = [
'addsets', 'scaleset', 'addsets', 'scaleset',
'errorband', 'kplot', 'watermark', 'errorband', 'kplot', 'watermark',
'pi', 'alpha', 'GF', 'conv', 'Mmu', 'Mel', 'Mtau', 'pi', 'alpha', 'GF', 'conv', 'Mmu', 'Mel', 'Mtau',
'importvegas', 'mulify' 'importvegas', 'exportvegas', 'mulify'
] ]
import numpy as np import numpy as np
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
from vegas import importvegas from vegas import importvegas, exportvegas
from errortools import mergenumbers, plusnumbers, dividenumbers, timesnumbers,\ from errortools import mergenumbers, plusnumbers, dividenumbers, timesnumbers,\
mergeplots, addplots, divideplots, scaleplot, \ mergeplots, addplots, divideplots, scaleplot, \
combineplots, combineNplots, \ combineplots, combineNplots, \
......
...@@ -133,3 +133,28 @@ def importvegas(filename="", fp=None, inttype='i'): ...@@ -133,3 +133,28 @@ def importvegas(filename="", fp=None, inttype='i'):
fp.close() fp.close()
return dic return dic
def exportvegas(dic, filename="", fp=None):
if not fp and filename:
fp = open(filename, 'wb')
fp.write("\t\000\000\000 McMule \t\000\000\000")
if 'SHA' not in dic:
dic['SHA'] = '00000'
if 'iteration' not in dic:
dic['iteration'] = 2
if 'ndo' not in dic:
dic['ndo'] = -1
if 'xi' not in dic:
dic['xi'] = -np.ones(17*50)
if 'randy' not in dic:
dic['randy'] = -1
while type(dic['chi2a']) == list:
dic['chi2a'] = dic['chi2a'][0]
plots = sorted(list(set(dic.keys()) - {
'SHA','chi2a','iteration','msg','value','time','ndo','randy','xi'
}))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment