Changeset 381


Ignore:
Timestamp:
Jan 29, 2012, 2:32:50 PM (12 years ago)
Author:
sommeria
Message:

read_get_field suppressed, replaced by read_GUI

Location:
trunk/src/series
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/series/aver_stat.m

    r374 r381  
    6161if test_object%isfield(Series,'sethandles')
    6262    hset_object=findobj(allchild(0),'tag','set_object');
    63     ProjObject=read_set_object(guidata(hset_object));
     63    %ProjObject=read_set_object(guidata(hset_object));
     64    ProjObject=read_GUI(hset_object);
    6465    %answeryes=questdlg({['field series projected on ' Series.ProjObject.Style]});
    6566    answeryes=msgbox_uvmat('INPUT_Y-N',['field series projected on ' ProjObject.Style ' before averaging']);
  • trunk/src/series/merge_proj.m

    r374 r381  
    5353if test_object
    5454    hset_object=findobj(allchild(0),'tag','set_object');
    55     ProjObject=read_set_object(guidata(hset_object));
     55    %ProjObject=read_set_object(guidata(hset_object));
     56    ProjObject=read_GUI(hset_object);
    5657    if ~isfield(ProjObject,'Style')
    5758            msgbox_uvmat('ERROR','Undefined projection object style')
  • trunk/src/series/time_series.m

    r374 r381  
    5454if test_object
    5555    hset_object=findobj(allchild(0),'tag','set_object');
    56     ProjObject=read_set_object(guidata(hset_object));
     56%     ProjObject=read_set_object(guidata(hset_object));
     57    ProjObject=read_GUI(hset_object);
    5758    answeryes=msgbox_uvmat('INPUT_Y-N',['field series projected on ' ProjObject.Style]);
    5859    if ~isequal(answeryes,'Yes')
  • trunk/src/series/vel2vol.m

    r208 r381  
    3838if test_object%isfield(Series,'sethandles')
    3939    hset_object=findobj(allchild(0),'tag','set_object');
    40     ProjObject=read_set_object(guidata(hset_object));
     40%     ProjObject=read_set_object(guidata(hset_object));
     41    ProjObject=read_GUI(hset_object);
    4142    if ~strcmp(ProjObject.Style,'volume')&&~strcmp(ProjObject.ProjMode,'interp')
    4243        msgbox_uvmat('ERROR',['a volume with projection mode interp must be defined']);
Note: See TracChangeset for help on using the changeset viewer.