function [] = initializeExperiment(exp_name, sys_mass) if strcmp(exp_name, 'tomography') if strcmp(sys_mass, 'light') opts_inputs = struct(... 'Dw', true, ... 'Rz', 60 ... % rpm ); elseif strcpm(sys_mass, 'heavy') opts_inputs = struct(... 'Dw', true, ... 'Rz', 1 ... % rpm ); else error('sys_mass should be light or heavy'); end initializeInputs(opts_inputs); else error('exp_name is only configured for tomography'); end end