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 b9f0bc79 authored by ulrich_y's avatar ulrich_y
Browse files

5: minor changes and the remainder of the file towards #12

parent 1257cc23
No related branches found
No related tags found
No related merge requests found
...@@ -151,12 +151,16 @@ def exportvegas(dic, filename="", fp=None): ...@@ -151,12 +151,16 @@ def exportvegas(dic, filename="", fp=None):
dic['xi'] = -np.ones(17*50) dic['xi'] = -np.ones(17*50)
if 'randy' not in dic: if 'randy' not in dic:
dic['randy'] = -1 dic['randy'] = -1
if 'runtime' not in dic:
dic['runtime'] = -1
if 'msg' not in dic:
dic['msg'] = "Warning: Generated with Python"
while type(dic['chi2a']) == list: while type(dic['chi2a']) == list:
dic['chi2a'] = dic['chi2a'][0] dic['chi2a'] = dic['chi2a'][0]
plots = sorted(list(set(dic.keys()) - { plots = sorted(list(set(dic.keys()) - {
'SHA','chi2a','iteration','msg','value','time','ndo','randy','xi' 'SHA','chi2a','iteration','msg','value','time','ndo','randy','xi','runtime'
})) }))
y,e = dic['value'] y,e = dic['value']
...@@ -172,16 +176,17 @@ def exportvegas(dic, filename="", fp=None): ...@@ -172,16 +176,17 @@ def exportvegas(dic, filename="", fp=None):
dic['chi2a']*(dic['iteration']-1) + y**2/e**2 dic['chi2a']*(dic['iteration']-1) + y**2/e**2
) )
write_record(fp, 'd', dic['xi']) write_record(fp, 'd', list(dic['xi']))
write_record(fp, 'i', dic['randy']) write_record(fp, 'i', dic['randy'])
nrbins = len(dic[plots[0]]) nrbins = len(dic[plots[0]])
nrq = len(plots) nrq = len(plots)
namelen = max(max([len(i) for i in plots]),6)
write_record(fp, 'i', [ write_record(fp, 'i', [
nrq, nrq,
nrbins, nrbins,
max(max([len(i) for i in plots]),6) namelen
]) ])
quant = np.zeros(2*(nrbins + 2)*nrq) quant = np.zeros(2*(nrbins + 2)*nrq)
...@@ -213,3 +218,10 @@ def exportvegas(dic, filename="", fp=None): ...@@ -213,3 +218,10 @@ def exportvegas(dic, filename="", fp=None):
quant[nrq*(nrbins + 2) + i::nrq] = delta**2*dic['iteration']*( quant[nrq*(nrbins + 2) + i::nrq] = delta**2*dic['iteration']*(
pp[:,2]**2*(dic['iteration']-1) + pp[:,1]**2 pp[:,2]**2*(dic['iteration']-1) + pp[:,1]**2
) )
write_record(fp, 'd', minv+maxv)
write_record(fp, 'c', "".join([i.ljust(namelen) for i in plots]))
write_record(fp, 'd', list(quant))
write_record(fp, 'd', dic['runtime'])
write_record(fp, 'c', dic['msg'])
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