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

11: minor convience functions in re #17

parent db7b8ad0
No related branches found
No related tags found
No related merge requests found
...@@ -44,6 +44,19 @@ def timesnumbers(a, b): ...@@ -44,6 +44,19 @@ def timesnumbers(a, b):
]) ])
def integratehistogram(hist):
ans = 0
if hist[0,0] == -np.inf:
ans += hist[0,1]
hist = hist[1:]
if hist[-1,0] == +np.inf:
ans += hist[-1,1]
hist = hist[:-1]
ans += np.mean(np.diff(hist[:,0])) * sum(hist[:,1])
return ans
def mergeplots(ps, returnchi=False): def mergeplots(ps, returnchi=False):
if type(ps) == list: if type(ps) == list:
ps = np.array(ps) ps = np.array(ps)
...@@ -93,6 +106,13 @@ def combineNplots(func, plots): ...@@ -93,6 +106,13 @@ def combineNplots(func, plots):
return accum return accum
def scaleplot(a, sx, sy=None):
if sy is None:
return np.array((1./sx, sx, sx)) * a
else:
return np.array((1./sx, sy, sy)) * a
def mergebins(p, n): def mergebins(p, n):
if p[0,0] == -np.inf: if p[0,0] == -np.inf:
return np.concatenate([ return np.concatenate([
......
...@@ -102,6 +102,17 @@ def addsets(s): ...@@ -102,6 +102,17 @@ def addsets(s):
return dic return dic
def scaleset(s, v):
dic = {
'time': s['time'],
'chi2a': s['chi2a'],
'value': v * s['value']
}
for plot in getplots(s):
dic[plot] = scaleplot(s[plot], 1., v)
return dic
def multiintersect(lists): def multiintersect(lists):
if len(lists) == 0: if len(lists) == 0:
return [] return []
......
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