From e5e645f89b719ab2b1ceefec6f4b20f8f90a36ed Mon Sep 17 00:00:00 2001
From: buccimtpc <35525053+buccimtpc@users.noreply.github.com>
Date: Tue, 3 Dec 2019 23:12:20 +0200
Subject: [PATCH] Update magia_get_input.m

max 100 kBq is a bit too stringent.
In BUG early dataset there were 4 curves > 100 kBq. 200 is safer and yet too low for a max as Bq/cc
---
 magia_get_input.m | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/magia_get_input.m b/magia_get_input.m
index 1d624fe..6c8b6aa 100644
--- a/magia_get_input.m
+++ b/magia_get_input.m
@@ -16,7 +16,7 @@ else
     fig = figure('Visible','Off'); clf;
     plot(input(:,1),input(:,2),'ko-');
     xlabel('Time (min)'); box off;
-    if(max(input(:,2) < 100))
+    if(max(input(:,2) < 200))
         ylabel('Radioactivity concentration (kBq/ml)');
     else
         ylabel('Radioactivity concentration (Bq/ml)');
@@ -32,4 +32,4 @@ else
     close(fig);
 end
 
-end
\ No newline at end of file
+end
-- 
GitLab