Newer
Older
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