Skip to content
Snippets Groups Projects
test_tcv_get_ids.m 326 B
Newer Older
Federico Felici's avatar
Federico Felici committed
function passed = test_tcv_get_ids

thispath = fileparts(mfilename('fullpath'));
run(fullfile(thispath,'..','gdatpaths'));

% simple test to check functionality

shotlist = [-1,40000];

for ishot=1:numel(shotlist)
  shot = shotlist(ishot);
  pf_active = tcv2ids(shot,'ids_names',{'pf_active','wall'});
end

passed = true;
end