From f170a32160c4580d60ecd64b50add238ce67148d Mon Sep 17 00:00:00 2001 From: Helmut Strey Date: Thu, 26 Dec 2024 15:10:32 -0500 Subject: [PATCH] added Plotsettings tab in GUI.jl --- src/gui/GUI.jl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gui/GUI.jl b/src/gui/GUI.jl index e8588785..6dcd18c1 100644 --- a/src/gui/GUI.jl +++ b/src/gui/GUI.jl @@ -84,6 +84,10 @@ function tab_parameters() :dt => NCAD(0.1, NUMBER, 1e-3, 10,[],true), :order => ["duration","reltol","abstol","solver","dt"], ), + "Plotsettings" => OrderedDict( + :spike_threshold => NCAD(20, NUMBER, -50, 200,[],true), + :max_neurons => NCAD(10, INTEGER, 1, 100,[],true) + ), "Parameter Fitting" => OrderedDict( :method => NCAD(1, DROPDOWN, 1, 2,["Laplace","MCMC"],true), :experiment => NCAD(1, DROPDOWN, 1, 2,["fMRI","LFP","EEG"],true),