Skip to content
Snippets Groups Projects
addDefaults.m 704 B
Newer Older
leprob001's avatar
leprob001 committed
function [] = addDefaults()
%ADDDEFAULTS Summary of this function goes here
%   Detailed explanation goes here

global artoaConfig;

if ~artoa.data.hasMember(artoaConfig, 'defaults')
    artoaConfig.defaults = struct();
end
artoaConfig.defaults.interpolationMethods = { ...
    'None', ...
    'Linear', ...
    'Spline', ...
    'Cubic' ...
};
artoaConfig.defaults.soundspeedMethods = { ...
    'Del Grosso', ...
leprob001's avatar
leprob001 committed
    'Linear' ...
leprob001's avatar
leprob001 committed
};
artoaConfig.defaults.offsetsToCopy = { ...
    'Measured', ...
    'Empirical', ...
    'Optimum' ...
};
artoaConfig.defaults.soundvelocityToCopy = { ...
    'Measured', ...
leprob001's avatar
leprob001 committed
    'Empirical', ...
leprob001's avatar
leprob001 committed
artoaConfig.defaults.pickPointMarkerSize = 80;


end