aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authortlatorre <tlatorre@uchicago.edu>2018-11-30 20:41:37 -0600
committertlatorre <tlatorre@uchicago.edu>2018-11-30 20:41:37 -0600
commit6dec29bae70bb120ce40f64b0fc0f331dbb965f2 (patch)
treef2c1663245bb0eeae700bfc7c00e80576d793cf6 /utils
parent069173a5b71ecdec755fb796c967de97642259a7 (diff)
downloadsddm-6dec29bae70bb120ce40f64b0fc0f331dbb965f2.tar.gz
sddm-6dec29bae70bb120ce40f64b0fc0f331dbb965f2.tar.bz2
sddm-6dec29bae70bb120ce40f64b0fc0f331dbb965f2.zip
update plot-fit-results to handle masked arrays properly
Diffstat (limited to 'utils')
-rwxr-xr-xutils/plot-fit-results2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/plot-fit-results b/utils/plot-fit-results
index b568075..48d922a 100755
--- a/utils/plot-fit-results
+++ b/utils/plot-fit-results
@@ -152,7 +152,7 @@ if __name__ == '__main__':
events.append(a)
- a = np.concatenate(events)
+ a = np.ma.concatenate(events)
bins = np.arange(50,1000,100)