source: trunk/src/series.m @ 1195

Last change on this file since 1195 was 1195, checked in by sommeria, 5 days ago

format of PIV data made more compact/4

File size: 184.0 KB
Line 
1%'series': master function associated to the GUI series.m for analysis field series
2%------------------------------------------------------------------------
3% function varargout = series(varargin)
4% associated with the GUI series.fig
5%
6%INPUT
7% param: structure with input parameters (link with the GUI uvmat)
8%      .menu_coord_str: string for the TransformName (menu for coordinate transforms)
9%      .menu_coord_val: value for TransformName (menu for coordinate transforms)
10%      .FileName: input file name
11%      .FileName_1: second input file name
12%      .list_field: menu of input fields
13%      .index_fields: chosen index
14%      .civ1=0 or 1, .interp1,  ... : input civ field type
15%
16
17%=======================================================================
18% Copyright 2008-2024, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France
19%   http://www.legi.grenoble-inp.fr
20%   Joel.Sommeria - Joel.Sommeria (A) univ-grenoble-alpes.fr
21%
22%     This file is part of the toolbox UVMAT.
23%
24%     UVMAT is free software; you can redistribute it and/or modify
25%     it under the terms of the GNU General Public License as published
26%     by the Free Software Foundation; either version 2 of the license,
27%     or (at your option) any later version.
28%
29%     UVMAT is distributed in the hope that it will be useful,
30%     but WITHOUT ANY WARRANTY; without even the implied warranty of
31%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
32%     GNU General Public License (see LICENSE.txt) for more details.
33%=======================================================================
34
35%------------------------------------------------------------------------
36%------------------------------------------------------------------------
37%  I - MAIN FUNCTION series
38%------------------------------------------------------------------------
39%------------------------------------------------------------------------
40function varargout = series(varargin)
41
42% Begin initialization code - DO NOT EDIT
43gui_Singleton = 1;
44gui_State = struct('gui_Name',       mfilename, ...
45                   'gui_Singleton',  gui_Singleton, ...
46                   'gui_OpeningFcn', @series_OpeningFcn, ...
47                   'gui_OutputFcn',  @series_OutputFcn, ...
48                   'gui_LayoutFcn',  [] , ...
49                   'gui_Callback',   []);
50if nargin && ischar(varargin{1})
51    gui_State.gui_Callback = str2func(varargin{1});
52end
53
54if nargout
55    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
56else
57    gui_mainfcn(gui_State, varargin{:});
58end
59% End initialization code - DO NOT EDIT
60
61%--------------------------------------------------------------------------
62% --- Executes just before series is made visible.
63%--------------------------------------------------------------------------
64function series_OpeningFcn(hObject, eventdata, handles,Param)
65
66% Choose default command line output for series
67handles.output = hObject;
68% Update handles structure
69guidata(hObject, handles);
70
71%% initial settings
72% position and  size of the GUI at opening
73set(0,'Unit','points')
74ScreenSize=get(0,'ScreenSize'); % size of the current screen, in points (1/72 inch)
75Width=900; % prefered width of the GUI in points (1/72 inch)
76Height=624; % prefered height of the GUI in points (1/72 inch)
77%adjust to screen size (reduced by a min margin)
78RescaleFactor=min((ScreenSize(3)-80)/Width,(ScreenSize(4)-80)/Height);
79if RescaleFactor>1
80    RescaleFactor=min(RescaleFactor,1);
81end
82Width=Width*RescaleFactor;
83Height=Height*RescaleFactor;
84LeftX=80*RescaleFactor; % position of the left fig side, in pixels (put to the left side, with some margin)
85LowY=round(ScreenSize(4)/2-Height/2); % put at the middle height on the screen
86set(hObject,'Units','points')
87set(hObject,'Position',[LeftX LowY Width Height])% position and size of the GUI at opening
88
89% settings of table MinIndex_j
90set(handles.MinIndex_i,'ColumnFormat',{'numeric'})
91set(handles.MinIndex_i,'ColumnEditable',false)
92set(handles.MinIndex_i,'ColumnName',{'i min'})
93set(handles.MinIndex_i,'Data',[])% initiate Data to double (not cell)
94
95% settings of table MinIndex_j
96set(handles.MinIndex_j,'ColumnFormat',{'numeric'})
97set(handles.MinIndex_j,'ColumnEditable',false)
98set(handles.MinIndex_j,'ColumnName',{'j min'})
99set(handles.MinIndex_j,'Data',[])% initiate Data to double (not cell)
100
101% settings of table MaxIndex_i
102set(handles.MaxIndex_i,'ColumnFormat',{'numeric'})
103set(handles.MaxIndex_i,'ColumnEditable',false)
104set(handles.MaxIndex_i,'ColumnName',{'i max'})
105set(handles.MaxIndex_i,'Data',[])% initiate Data to double (not cell)
106
107% settings of table MaxIndex_j
108set(handles.MaxIndex_j,'ColumnFormat',{'numeric'})
109set(handles.MaxIndex_j,'ColumnEditable',false)
110set(handles.MaxIndex_j,'ColumnName',{'j max'})
111set(handles.MaxIndex_j,'Data',[])% initiate Data to double (not cell)
112
113% settings of table PairString
114set(handles.PairString,'ColumnName',{'pairs'})
115set(handles.PairString,'ColumnEditable',false)
116set(handles.PairString,'ColumnFormat',{'char'})
117set(handles.PairString,'Data',{''})
118
119% settings of table MaskTable
120%set(handles.MaskTable,'ColumnName',{'mask name'})
121set(handles.PairString,'ColumnEditable',false)
122set(handles.PairString,'ColumnFormat',{'char'})
123set(handles.PairString,'Data',{''})
124
125series_ResizeFcn(hObject, eventdata, handles)%resize table according to series GUI size
126set(hObject,'WindowButtonDownFcn',{'mouse_down'})%allows mouse action with right button (zoom for uicontrol display)
127set(hObject,'DeleteFcn',{@closefcn})%
128
129% check default input data
130if ~exist('Param','var')
131    Param=[]; % default
132end
133
134%% Read the parameter file series.xml containing general parameters for the GUI series, or read series.xml.default if it does not exist
135SeriesData=[];
136path_series=fileparts(which('series'));% path to the GUI series
137xmlfile=fullfile(path_series,'series.xml');
138if ~exist(xmlfile,'file')
139    [success,message]=copyfile(fullfile(path_series,'series.xml.default'),xmlfile);
140    if success==0
141        disp(message)
142        return
143    end
144end
145if exist(xmlfile,'file')
146    SeriesData=xml2struct(xmlfile);% read the xml file containing parameters for series computations
147    if ~(isfield(SeriesData,'ClusterParam')&& isfield(SeriesData.ClusterParam,'LaunchCmdFcn'))
148        [success,message]=copyfile(xmlfile,fullfile(path_series,'series.xml~'));% backup the file series.xml, not correctly documented
149        delete(xmlfile);
150        [success,message]=copyfile(fullfile(path_series,'series.xml.default'),xmlfile);% use the defualt series.xml
151    end
152    SeriesData=xml2struct(xmlfile);% read again the xml file containing parameters for series computations
153end
154
155%% list of builtin functions in the menu ActionName
156ActionList={'check_data_files';'aver_stat';'time_series';'civ_series';'merge_proj'}; % WARNING: fits with nb_builtin_ACTION=4 in ActionName_callback
157NbBuiltinAction=numel(ActionList);
158set(handles.Action,'UserData',NbBuiltinAction)
159%path_series_fct=fullfile(path_series,'series');%path of the functions in subdirectroy 'series'
160[path_series]=fileparts(which('series')); % path to the GUI series
161path_series_fct=fullfile(path_series,'series'); % path of the functions in subdirectroy 'series'
162ActionExtList={'.m';'.sh';'fluidimage'}; % default choice of extensions (Matlab fct .m or compiled version .sh
163ActionPathList=cell(NbBuiltinAction,1); % initiate the cell matrix of Action fct paths
164ActionPathList(:)={path_series_fct}; % set the default path to series fcts to all list members
165RunModeList={'local';'background'}; % default choice of extensions (Matlab fct .m or compiled version .sh)
166if isfield(SeriesData.ClusterParam, 'ExistenceTest')
167    oarcommand=SeriesData.ClusterParam.ExistenceTest;
168    s=system(oarcommand); % look for cluster system presence
169    if isequal(s,0)% cluster detected
170        RunModeList=[RunModeList;{'cluster'}];
171        set(handles.MonitorCluster,'Visible','on'); % make visible button for access to Monika
172        set(handles.num_CPUTime,'Visible','on'); % make visible button for CPU time estimate for one ref index
173        set(handles.num_CPUTime,'String','')% default CPU time undefined
174        set(handles.CPUTime_txt,'Visible','on'); % make visible button for CPU time title
175    end
176    set(handles.RunMode,'String',RunModeList)% display the menu of available run modes, local, background or cluster manager
177else
178    disp('no cluster availability test in series.xml')
179end
180
181
182%% list of builtin transform functions in the menu TransformName
183TransformList={'';'sub_field';'phys';'phys_polar'}; % WARNING: must fit with the corresponding menu in uvmat and nb_builtin_transform=4 in  TransformName_callback
184NbBuiltinTransform=numel(TransformList);
185path_transform_fct=fullfile(path_series,'transform_field');
186TransformPathList=cell(NbBuiltinTransform,1); % initiate the cell matrix of Action fct paths
187TransformPathList(:)={path_transform_fct}; % set the default path to series fcts to all list members
188SeriesData.TransformPath=path_transform_fct;% store the standard path for trqnsform functions (needed for compilation)
189
190%% get the user defined functions stored in the personal file uvmat_perso.mat
191dir_perso=prefdir;
192profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
193if exist(profil_perso,'file')
194    h=load (profil_perso);
195    %get the list of previous input files in the upper bar menu Open
196    if isfield(h,'MenuFile')
197        for ifile=1:min(length(h.MenuFile),5)
198            set(handles.(['MenuFile_' num2str(ifile)]),'Label',h.MenuFile{ifile});
199            set(handles.(['MenuFile_' num2str(ifile+5)]),'Label',h.MenuFile{ifile});
200        end
201    end
202    %get the menu of actions
203    if isfield(h,'ActionListUser') && iscell(h.ActionListUser) && isfield(h,'ActionPathListUser') && iscell(h.ActionPathListUser)
204        ActionList=[ActionList;h.ActionListUser];
205        ActionPathList=[ActionPathList;h.ActionPathListUser(:,1)];
206    end
207    %get the menu of transform fct
208    if isfield(h,'TransformListUser') && iscell(h.TransformListUser) && isfield(h,'TransformPathListUser') && iscell(h.TransformPathListUser)
209        TransformList=[TransformList;h.TransformListUser];
210        TransformPathList=[TransformPathList;h.TransformPathListUser];
211    end
212end
213
214%% selection of the input Action fct
215ActionCheckExist=true(size(ActionList)); % initiate the check of the path to the listed action fct
216for ilist=NbBuiltinAction+1:numel(ActionList)%check  the validity of the path of the user defined Action fct
217    ActionCheckExist(ilist)=exist(fullfile(ActionPathList{ilist},[ActionList{ilist} '.m']),'file');
218end
219ActionPathList=ActionPathList(ActionCheckExist,:); % suppress the menu options which are not valid anymore
220ActionList=ActionList(ActionCheckExist);
221set(handles.ActionName,'String',[ActionList;{'more...'}])
222set(handles.ActionName,'UserData',ActionPathList)
223ActionIndex=[];
224if isfield(Param,'ActionName')% copy the selected menu index transferred in Param from uvmat
225    ActionIndex=find(strcmp(Param.ActionName,ActionList),1);
226end
227if isempty(ActionIndex)
228    ActionIndex=1;
229end
230set(handles.ActionName,'Value',ActionIndex)
231set(handles.ActionPath,'String',ActionPathList{ActionIndex})
232set(handles.ActionExt,'Value',1)
233set(handles.ActionExt,'String',ActionExtList)
234
235%% selection of the input transform fct
236TransformCheckExist=true(size(TransformList));
237for ilist=NbBuiltinTransform+1:numel(TransformList)
238    TransformCheckExist(ilist)=exist(fullfile(TransformPathList{ilist},[TransformList{ilist} '.m']),'file');
239end
240TransformPathList=TransformPathList(TransformCheckExist);
241TransformList=TransformList(TransformCheckExist);
242set(handles.TransformName,'String',[TransformList;{'more...'}])
243set(handles.TransformName,'UserData',TransformPathList)
244TransformIndex=[];
245if isfield(Param,'TransformName')% copy the selected menu index transferred in Param from uvmat
246    TransformIndex=find(strcmp(Param.TransformName,TransformList),1);
247end
248if isempty(TransformIndex)
249    TransformIndex=1;
250end
251set(handles.TransformName,'Value',TransformIndex)
252set(handles.TransformPath,'String',TransformPathList{TransformIndex})
253
254%% fields input initialisation
255if isfield(Param,'list_fields')&& isfield(Param,'index_fields') &&~isempty(Param.list_fields) &&~isempty(Param.index_fields)
256    set(handles.FieldName,'String',Param.list_fields); % list menu fields
257    set(handles.FieldName,'Value',Param.index_fields); % selected string index
258end
259if isfield(Param,'Coordinates')
260    if isfield(Param.Coordinates,'Coord_x')
261        set(handles.Coord_x,'String',Param.Coordinates.Coord_x)
262    end
263    if isfield(Param.Coordinates,'Coord_y')
264        set(handles.Coord_y,'String',Param.Coordinates.Coord_y)
265    end
266    if isfield(Param.Coordinates,'Coord_z')
267        set(handles.Coord_z,'String',Param.Coordinates.Coord_z)
268    end
269end
270
271%% introduce the input file name(s) if defined from input Param,
272set(handles.series,'UserData',SeriesData)% initiate Userdata
273if isfield(Param,'InputFile')
274
275    %% fill the list of input file series
276    InputTable=[{Param.InputFile.RootPath},{Param.InputFile.SubDir},{Param.InputFile.RootFile},{Param.InputFile.NomType},{Param.InputFile.FileExt}];
277    if isempty(find(cellfun('isempty',InputTable)==0,1)) % if there is no input file, do not introduce input info
278        set(handles.REFRESH,'BackgroundColor',[1 0 1])% set REFRESH button to magenta color to indicate that input refresh is needed
279        return
280    end
281    % TimeTable=[{Param.InputFile.TimeName},{[]},{[]},{[]},{[]}];
282    if isfield(Param.InputFile,'RootPath_1')
283        InputTable=[InputTable;[{Param.InputFile.RootPath_1},{Param.InputFile.SubDir_1},{Param.InputFile.RootFile_1},{Param.InputFile.NomType_1},{Param.InputFile.FileExt_1}]];
284        % TimeTable=[TimeTable; [{Param.InputFile.TimeName_1},{[]},{[]},{[]},{[]}]];
285    end
286    set(handles.InputTable,'Data',InputTable)
287
288    %% define the default path for the output files
289    [InputPath,Device,DeviceExt]=fileparts(InputTable{1,1});
290    [InputPath,Experiment,ExperimentExt]=fileparts(InputPath);
291    set(handles.Device,'String',[Device DeviceExt])
292    set(handles.Experiment,'String',[Experiment ExperimentExt])
293    if ~isempty(regexp(InputTable{1,1},'(^http://)|(^https://)','once'))
294        set(handles.OutputPathBrowse,'Value',1)% an output folder needs to be specified for OpenDAP data
295    end
296
297    %update the output path if needed
298    if ~(isfield(SeriesData,'InputPath') && strcmp(SeriesData.InputPath,InputPath))
299        if get(handles.OutputPathBrowse,'Value')==1  % fix the output path in manual mode
300            OutputPathOld=get(handles.OutputPath,'String');
301            OutputPath=uigetdir(OutputPathOld,'pick a root folder for output data');
302            set(handles.OutputPath,'String',OutputPath)
303        else %reproduce the input path for output
304            set(handles.OutputPath,'String',InputPath)
305        end
306    end
307
308    %% determine the selected reference field indices for pair display
309
310  %  [~,~,~,i1,i2,j1,j2]=fileparts_uvmat(Param.InputFile.FileIndex);
311  i1=1;j1=1;i2=[];j2=[];%default
312    if isfield(Param,'i1')
313        i1=Param.i1;
314    end
315    if isfield(Param,'j1')
316        j1=Param.j1;
317    end
318    if isfield(Param,'i2')
319        i2=Param.i2;
320    end
321    if isfield(Param,'j2')
322        j2=Param.j2;
323    end
324    ref_i=i1;%default
325    if ~isempty(i2)
326    ref_i=floor((i1+i2)/2); % reference image number corresponding to the file
327    end
328    % set(handles.num_ref_i,'String',num2str(ref_i));
329    if isempty(j1)
330        j1=1;
331    end
332    if isempty(j2)
333        j2=j1;
334    end
335    ref_j=floor((j1+j2)/2); % reference image number corresponding to the file
336    SeriesData.ref_i=ref_i;
337    SeriesData.ref_j=ref_j;
338    set(handles.series,'UserData',SeriesData)
339    Param.XmlData_1=[];XmlData_2=[];
340    if isfield(Param.HiddenData,'XmlData')
341            Param.XmlData=Param.HiddenData.XmlData{1};
342    end
343    Param.i1_series=Param.HiddenData.i1_series{1};
344    Param.i2_series=Param.HiddenData.i2_series{1};
345    Param.j1_series=Param.HiddenData.j1_series{1};
346    Param.j2_series=Param.HiddenData.j2_series{1};
347    Param.FileInfo=Param.HiddenData.FileInfo{1};
348    Param.Relabel=[];%default
349    update_rootinfo(handles,Param,Param.HiddenData.MovieObject{1},1)% update the data for the first input line
350    if isfield(Param,'FileName_1')% if there is a second input line from uvmat
351        if isfield(Param.HiddenData,'XmlData') && numel(Param.HiddenData.XmlData)>=2
352            Param.XmlData=Param.HiddenData.XmlData{1};
353        end
354        Param.i1_series=Param.HiddenData.i1_series{2};
355        Param.i2_series=Param.HiddenData.i2_series{2};
356        Param.j1_series=Param.HiddenData.j1_series{2};
357        Param.j2_series=Param.HiddenData.j2_series{2};
358        Param.FileInfo=Param.HiddenData.FileInfo{2};
359        update_rootinfo(handles,Param,Param.HiddenData.MovieObject{2},2)% update the data for the second input line
360    end
361
362    %% enable field and veltype menus, in accordance with the current action
363    ActionName_Callback([],[], handles)
364
365%     %% set length of waitbar
366%     displ_time(handles)
367
368else
369    set(handles.REFRESH,'BackgroundColor',[1 0 1])% set REFRESH button to magenta color to indicate that input refresh is needed
370end
371if isfield(Param,'incr_i')
372    set(handles.num_incr_i,'String',num2str(Param.incr_i))
373else
374    set(handles.num_incr_i,'String','1')
375end
376if isfield(Param,'incr_j')
377    set(handles.num_incr_j,'String',num2str(Param.incr_j))
378else
379    set(handles.num_incr_j,'String','1')
380end
381
382%------------------------------------------------------------------------
383% --- Outputs from this function are returned to the command line.
384function varargout = series_OutputFcn(hObject, eventdata, handles)
385%------------------------------------------------------------------------
386varargout{1} = handles.output;
387
388%------------------------------------------------------------------------
389% --- executed when closing uvmat: delete or desactivate the associated figures if exist
390function closefcn(gcbo,eventdata)
391%------------------------------------------------------------------------
392
393% delete set_object_series if detected
394hh=findobj(allchild(0),'name','view_object_series');
395if ~isempty(hh)
396    delete(hh)
397end
398hh=findobj(allchild(0),'name','edit_object_series');
399if ~isempty(hh)
400    delete(hh)
401end
402
403%delete the bowser if detected
404hh=findobj(allchild(0),'tag','browser');
405if ~isempty(hh)
406    delete(hh)
407end
408
409
410%------------------------------------------------------------------------
411%------------------------------------------------------------------------
412%  II - FUNCTIONS FOR INTRODUCING THE INPUT FILES
413% automatically sets the global properties when the rootfile name is introduced
414% then activate the view-field actionname if selected
415% it is activated either by clicking on the RootPath window or by the
416% browser
417%------------------------------------------------------------------------
418%------------------------------------------------------------------------
419% --- fct activated by the browser under 'Open'
420%------------------------------------------------------------------------
421function MenuBrowse_Callback(hObject, eventdata, handles)
422%% look for the previously opened file 'oldfile'
423InputTable=get(handles.InputTable,'Data');
424oldfile=InputTable{1,1};
425if isempty(oldfile)
426    % use a file name stored in prefdir
427    dir_perso=prefdir;
428    profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
429    if exist(profil_perso,'file')
430        h=load (profil_perso);
431        if isfield(h,'RootPath') && ischar(h.RootPath)
432            oldfile=h.RootPath;
433        end
434    end
435end
436%% launch the browser
437fileinput=uigetfile_uvmat('pick an input file in the series',oldfile);
438hh=dir(fileinput);
439if numel(hh)>1
440    msgbox_uvmat('ERROR','invalid input, probably a broken link');
441else
442    if ~isempty(fileinput)
443        display_file_name(handles,fileinput,'one')
444    end
445end
446
447% --------------------------------------------------------------------
448function MenuBrowseAppend_Callback(hObject, eventdata, handles)
449
450%% look for the previously opened file 'oldfile'
451InputTable=get(handles.InputTable,'Data');
452RootPathCell=InputTable(:,1);
453if isempty(RootPathCell{1})% no input file in the table
454     MenuBrowse_Callback(hObject, eventdata, handles)%refresh the input table, not append
455     return
456end
457SubDirCell=InputTable(:,2);
458oldfile=fullfile(RootPathCell{1},SubDirCell{1});
459
460%% use a file name stored in prefdir
461dir_perso=prefdir;
462profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
463if exist(profil_perso,'file')
464    h=load (profil_perso);
465    if isfield(h,'RootPath') && ischar(h.RootPath)
466        oldfile=h.RootPath;
467    end
468end
469
470%% launch the browser
471fileinput=uigetfile_uvmat('pick a file to append in the input table',oldfile);
472hh=dir(fileinput);
473if numel(hh)>1
474    msgbox_uvmat('ERROR','invalid input, probably a broken link');
475else
476    if ~isempty(fileinput)
477        display_file_name(handles,fileinput,'append')
478    end
479end
480
481%------------------------------------------------------------------------
482% --- fct activated by selecting a previous file under the menu Open
483%------------------------------------------------------------------------
484function MenuFile_Callback(hObject, eventdata, handles)
485
486errormsg=display_file_name(handles,get(hObject,'Label'),'one');
487if ~isempty(errormsg)
488    set(hObject,'Label','')
489    MenuFile=[{get(handles.MenuFile_1,'Label')};{get(handles.MenuFile_2,'Label')};...
490        {get(handles.MenuFile_3,'Label')};{get(handles.MenuFile_4,'Label')};{get(handles.MenuFile_5,'Label')}];
491    str_find=strcmp(get(hObject,'Label'),MenuFile);
492    MenuFile(str_find)=[]; % suppress the input file to the list
493    for ifile=1:numel(MenuFile)
494        set(handles.(['MenuFile_' num2str(ifile)]),'Label',MenuFile{ifile});
495    end
496end
497
498%------------------------------------------------------------------------
499% --- fct activated by selecting a previous file under the menu Open/append
500%------------------------------------------------------------------------
501function MenuFile_append_Callback(hObject, eventdata, handles)
502
503InputTable=get(handles.InputTable,'Data');
504if isempty(InputTable{1,1})% no input file in the table
505    display_file_name(handles,get(hObject,'Label'),'one') %refresh the input table, not append
506else
507    display_file_name(handles,get(hObject,'Label'),'append')% append the selected file to the current list of InputTable
508end
509
510%------------------------------------------------------------------------
511% --- fct activated by the browser under 'Open campaign/Browse...'
512%------------------------------------------------------------------------
513function MenuBrowseCampaign_Callback(hObject, eventdata, handles)
514
515%% look for the previously opened file 'oldfile'
516InputTable=get(handles.InputTable,'Data');
517if ~isempty(InputTable)
518oldfile=[InputTable{1,1} InputTable{1,2}];
519else
520    % use a file name stored in prefdir
521    dir_perso=prefdir;
522    profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
523    if exist(profil_perso,'file')
524        h=load (profil_perso);
525        if isfield(h,'MenuCampaign') && ~isempty(h.MenuCampaign)&& ischar(h.MenuCampaign{1})
526            oldfile=h.MenuCampaign{1};
527        end
528    end
529end
530InputTable{1,1}='...';
531set(handles.InputTable,'Data',InputTable)
532browse_data(oldfile,'on','on'); % open the GUI browse_data to get select a campaign dir, experiment and device
533
534
535
536% --- Executes when selected cell(s) is changed in InputTable.
537function InputTable_CellSelectionCallback(hObject, eventdata, handles)
538iline=[];
539if ~isempty(eventdata.Indices)
540    iline=eventdata.Indices(1);
541end
542set(handles.InputLine,'String',num2str(iline));
543
544%------------------------------------------------------------------------
545% --- 'key_press_fcn:' function activated when a key is pressed on the keyboard
546%------------------------------------------------------------------------
547function InputTable_KeyPressFcn(hObject, eventdata, handles)
548set(handles.REFRESH,'BackgroundColor',[1 0 1])% set REFRESH button to magenta color to indicate that input refresh is needed
549set(handles.OutputSubDir,'BackgroundColor',[1 0 1])% set edit box OutputSubDir to magenta color to indicate that refresh may be needed
550xx=double(get(handles.series,'CurrentCharacter')); % get the keyboard character
551if ~isempty(xx)
552    switch xx
553        case 31 %downward arrow
554            InputTable=get(handles.InputTable,'Data');
555            iline=str2double(get(handles.InputLine,'String'));
556            if isequal(iline,size(InputTable,1))% arrow downward
557                InputTable=[InputTable;InputTable(iline,:)]; % create a new line as a copy of the last one
558                set(handles.InputTable,'Data',InputTable);
559            end
560        case 127  %key 'Suppress'
561            ClearLine_Callback(hObject, eventdata, handles)
562    end
563end
564
565%------------------------------------------------------------------------
566% --- Executes on button press in REFRESH.
567function REFRESH_Callback(hObject, eventdata, handles)
568%------------------------------------------------------------------------
569CheckRelabel=get(handles.Relabel,'Value');
570check_input_file_series(handles,CheckRelabel)
571
572%% enable field and veltype menus, in accordance with the current action
573ActionInput_Callback([],[], handles)
574
575%------------------------------------------------------------------------
576% --- check the input file series.
577function check_input_file_series(handles,CheckRelabel)
578%------------------------------------------------------------------------
579InputTable=get(handles.InputTable,'Data');%read the table of input file series
580set(handles.series,'Pointer','watch') % set the mouse pointer to 'watch'
581set(handles.REFRESH,'BackgroundColor',[1 1 0])% set REFRESH  button to yellow color (indicate activation)
582set(handles.Relabel,'BackgroundColor',[0 1 0])
583drawnow
584empty_line=false(size(InputTable,1),1);
585for iline=1:size(InputTable,1)
586    empty_line(iline)= isempty(cell2mat(InputTable(iline,1:3)));%check the empty lines in the input table
587end
588if ~isempty(find(empty_line,1))%removes the empty lines in the table
589    InputTable(empty_line,:)=[]; % remove empty lines
590    set(handles.InputTable,'Data',InputTable)
591    ListTable={'MinIndex_i','MaxIndex_i','MinIndex_j','MaxIndex_j','PairString','TimeTable'};
592    for ilist=1:numel(ListTable)
593        Table=get(handles.(ListTable{ilist}),'Data');
594        Table(empty_line,:)=[]; % remove empty lines
595        set(handles.(ListTable{ilist}),'Data',Table);
596    end
597    set(handles.series,'UserData',[])%refresh the stored info
598end
599nbview=size(InputTable,1);
600CheckRelabelQuest=false;
601for iview=1:nbview
602    RootPath=fullfile(InputTable{iview,1},InputTable{iview,2});
603    Param.Relabel=false;
604    MovieObject=[];
605    Param.FileInfo=[];
606    if ~exist(RootPath,'dir')
607        Param.i1_series=[];
608        RootFile='';
609    else
610        [XmlFileName,Rank]=find_imadoc(InputTable{iview,1},InputTable{iview,2});
611        if ~isempty(XmlFileName) && Rank==0
612            XmlData=read_imadoc(XmlFileName);
613            if ~isempty(XmlData.FileSeries)
614                set(handles.Relabel,'Visible','on')
615                answer='Yes';
616                if ~CheckRelabel && ~CheckRelabelQuest% propose to relabel if not selected yet
617                    answer=msgbox_uvmat('INPUT_Y-N','relabel the frame  indices according to the xml info?');
618                    CheckRelabelQuest=true;
619                end
620                if strcmp(answer,'Yes')
621                    set(handles.Relabel,'Value',1)
622                    NomType='*';
623                    i1=1;i2=[];j1=1;j2=[];
624                    Param.i1_series=1:size(XmlData.Time,1)-1;
625                    Param.i2_series=[];
626                    if size(XmlData.Time,2)>2
627                        Param.j1_series=1:size(XmlData.Time,2)-1;
628                    else
629                        Param.j1_series=[];
630                    end
631                    Param.j2_series=[];
632                    Param.Relabel=true;
633                    FirstFile=fullfile(InputTable{iview,1},InputTable{iview,2},XmlData.FileSeries.FileName{1});
634                    if ~exist(FirstFile,'file')
635                        msgbox_uvmat('ERROR',[FirstFile ' does not exist']);
636                        return
637                    end
638                    [Param.FileInfo,VideoObject]=get_file_info(FirstFile);
639                end
640            end
641            Param.XmlData=XmlData;
642        else
643            set(handles.Relabel,'Value',0)
644        end
645    end
646    if ~Param.Relabel
647        %scan the input folder
648        InputTable{iview,3}=regexprep(InputTable{iview,3},'^/','');%suppress '/' at the beginning of the input name
649        i1=str2double(get(handles.num_first_i,'String'));
650        j1=str2double(get(handles.num_first_j,'String'));
651        j2=[];%default
652%         PairString=get(handles.PairString,'Data');
653%         if numel(PairString)>=iview
654%             r=regexp(PairString{iview},'(?<num1>\d+)-(?<num2>\d+)' ,'names');
655%             if ~isempty(r)
656%                 j1=str2double(r.num1);
657%                 j2=str2double(r.num2);
658%             end
659%         end
660 InputFile=[InputTable{iview,3} InputTable{iview,4} InputTable{iview,5}];
661        %InputFile=fullfile_uvmat('','',InputTable{iview,3},InputTable{iview,5},InputTable{iview,4},i1,[],j1,j2);
662        [RootPath,~,RootFile,Param.i1_series,Param.i2_series,Param.j1_series,Param.j2_series,~,Param.FileInfo,MovieObject]=...
663            find_file_series(fullfile(InputTable{iview,1},InputTable{iview,2}),InputFile);
664    end
665
666    % if no file is found on line #ivew, open a browser
667    if ~Param.Relabel && isempty(RootFile)&& isempty(Param.i1_series)
668        fileinput=uigetfile_uvmat(['wrong input at line ' num2str(iview) ':pick a new input file'],RootPath);
669        if isempty(fileinput)
670            set(handles.REFRESH,'BackgroundColor',[1 0 0])% set REFRESH  back to red color
671            return
672        else
673            display_file_name(handles,fileinput,iview)% update the table of input file series, then call update_rootinfo
674        end
675    else
676        update_rootinfo(handles,Param,MovieObject,iview)
677    end
678end
679
680%% update MinIndex_i and MaxIndex_i if the input table content has been reduced in line nbre
681MinIndex_i_table=get(handles.MinIndex_i,'Data'); % retrieve the min indices in the table MinIndex
682set(handles.MinIndex_i,'Data',MinIndex_i_table(1:nbview,:));
683MinIndex_j_table=get(handles.MinIndex_j,'Data'); % retrieve the min indices in the table MinIndex
684set(handles.MinIndex_j,'Data',MinIndex_j_table(1:nbview,:));
685MaxIndex_i_table=get(handles.MaxIndex_i,'Data'); % retrieve the min indices in the table MinIndex
686
687set(handles.MaxIndex_i,'Data',MaxIndex_i_table(1:nbview,:));
688MaxIndex_j_table=get(handles.MaxIndex_j,'Data'); % retrieve the min indices in the table MinIndex
689set(handles.MaxIndex_j,'Data',MaxIndex_j_table(1:nbview,:));
690PairString=get(handles.PairString,'Data'); % retrieve the min indices in the table MinIndex
691set(handles.PairString,'Data',PairString(1:nbview,:));
692TimeTable=get(handles.TimeTable,'Data'); % retrieve the min indices in the table MinIndex
693set(handles.TimeTable,'Data',TimeTable(1:nbview,:));
694
695
696set(handles.REFRESH,'BackgroundColor',[1 0 0])% set REFRESH  button to red color (indicate activation finished)
697set(handles.series,'Pointer','arrow') % set the mouse pointer to 'watch'
698
699
700
701%------------------------------------------------------------------------
702% --- Function called when a new file is opened, either by series_OpeningFcn or by the browser
703%------------------------------------------------------------------------
704% INPUT:
705% handles: handles of elements in the GUI
706% InputFile: (full) input file name, including  path
707% iview: line index in the input table
708%       or 'one': refresh the list
709%         'append': add a new line to the input table
710function errormsg=display_file_name(handles,InputFile,iview)
711
712set(handles.REFRESH,'BackgroundColor',[1 1 0])% set REFRESH  button to yellow color (indicate activation)
713drawnow
714errormsg=''; % default
715
716
717%% get the input root name, indices, file extension and nomenclature NomType
718if isempty(regexp(InputFile,'^http', 'once')) && ~exist(InputFile,'file')
719    errormsg=['input file ' InputFile  ' does not exist'];
720    msgbox_uvmat('ERROR',errormsg)
721    set(handles.REFRESH,'BackgroundColor',[1 0 1])% set REFRESH  button to magenta color (refresh still needed)
722    return
723end
724
725%% Check the nature of the input file
726[FileInfo,MovieObject]=get_file_info(InputFile);
727CheckOpen=false;
728switch FileInfo.FileType
729    case 'txt'%text input file
730        CheckOpen=true;
731        edit(InputFile)
732    case 'xml'%xml input file
733        CheckOpen=true;
734        editxml(InputFile)
735    case 'figure'%Matlab figure
736        CheckOpen=true;
737        open(InputFile)
738end
739if CheckOpen
740    set(handles.REFRESH,'BackgroundColor',[1 0 1])% set REFRESH  button to magenta  color (end of activation)
741    return
742end
743Param.FileInfo=FileInfo;
744
745%% Look for file relabeling option
746[FilePath,RootFile,FileExt]=fileparts(InputFile);
747[RootPath,SubDir,SubDirExt]=fileparts(FilePath);
748[XmlFileName,Rank]=find_imadoc(RootPath,[SubDir SubDirExt]);
749Param.Relabel=false;%no file relabeling by default
750XmlData=[];
751if ~isempty(XmlFileName)
752    XmlData=read_imadoc(XmlFileName);
753    if isfield(XmlData,'FileSeries') && Rank==0
754        set(handles.Relabel,'Visible','on')
755        answer=msgbox_uvmat('INPUT_Y-N','relabel the frame  indices according to the xml info?');
756        if strcmp(answer,'Yes')
757            set(handles.Relabel,'Value',1)
758            NomType='*';
759            i1=1;i2=[];j1=1;j2=[];
760            Param.i1_series=1:size(XmlData.Time,1)-1;
761            Param.i2_series=[];
762            if size(XmlData.Time,2)>2
763            Param.j1_series=1:size(XmlData.Time,2)-1;
764            else
765                Param.j1_series=[];
766            end
767            Param.j2_series=[];
768            Param.Relabel=true;
769        end
770    end
771end
772Param.XmlData=XmlData;
773
774%% detect the list of file in the input series in the case of no relabeling
775if ~Param.Relabel
776            set(handles.Relabel,'Value',0)
777    %%%%%%%%%%%%%%%%%%
778    %TODO: case of input by uvmat: do not check again the input series %%%%%%%
779    %%%%%%%%%%%%%%%%%%%
780    % detect the file type, get the movie object if relevant, and look for the corresponding file series:
781    % the root name and indices may be corrected by including the first index i1 if a corresponding xml file exists
782    [RootPath,SubDir,RootFile,Param.i1_series,Param.i2_series,Param.j1_series,Param.j2_series,NomType,FileInfo,MovieObject,i1,i2,j1,j2]=find_file_series(FilePath,[RootFile FileExt]);
783    if isempty(RootFile)&&isempty(Param.i1_series)
784        errormsg='no input file in the series';
785        msgbox_uvmat('ERROR',errormsg)
786        set(handles.REFRESH,'BackgroundColor',[1 0 1])% set REFRESH  button to magenta color (end of activation)
787        return
788    end
789end
790
791%% enable other menus and uicontrols
792set(handles.RUN, 'Enable','On')
793set(handles.RUN,'BackgroundColor',[1 0 0])% set RUN button to red
794set(handles.InputTable,'BackgroundColor',[1 1 0]) % set RootPath edit box  to yellow to indicate that it is under modification
795drawnow
796
797
798%% refresh the list of file series according to the input option 'one' or 'append'
799InputTable=get(handles.InputTable,'Data');
800SeriesData=get(handles.series,'UserData');
801if strcmp(iview,'append') % display the input data as a new line in the table
802    iview=size(InputTable,1)+1; % the next line in InputTable becomes the current line
803elseif strcmp(iview,'one') % refresh the list of  input  file series
804    iview=1; % the first line in InputTable becomes the current line
805    InputTable={'','','','',''};
806    set(handles.TimeTable,'Data',[{''},{[]},{[]},{[]},{[]}])
807    set(handles.MinIndex_i,'Data',[])
808    set(handles.MaxIndex_i,'Data',[])
809    set(handles.MinIndex_j,'Data',[])
810    set(handles.MaxIndex_j,'Data',[])
811    set(handles.PairString,'Data',{''})
812    SeriesData.CheckPair=0; % reset the list of input lines with pairs
813    SeriesData.i1_series={};
814    SeriesData.i2_series={};
815    SeriesData.j1_series={};
816    SeriesData.j2_series={};
817 %   SeriesData.FileType={};
818    SeriesData.FileInfo={};
819    SeriesData.Time={};
820end
821if isfield(SeriesData,'i1_series')% remove the irrelevant data lines beyond iview in SeriesData
822    SeriesData.i1_series(iview+1:end)=[];
823    SeriesData.i2_series(iview+1:end)=[];
824    SeriesData.j1_series(iview+1:end)=[];
825    SeriesData.j2_series(iview+1:end)=[];
826    %SeriesData.FileType(iview+1:end)=[];
827    SeriesData.FileInfo(iview+1:end)=[];
828    SeriesData.Time(iview+1:end)=[];
829end
830
831%% fill the current Intput Table line
832InputTable(iview,:)=[{RootPath},{SubDir},{RootFile},{NomType},{FileExt}];%fill the current Intput Table line
833if iview >1
834    set(handles.InputLine,'String',num2str(iview))
835end
836set(handles.InputTable,'Data',InputTable)
837
838%% determine the selected reference field indices for pair display
839if isempty(i1)
840    i1=1;
841end
842if isempty(i2)
843    i2=i1;
844end
845ref_i=floor((i1+i2)/2); % reference image number corresponding to the file
846% set(handles.num_ref_i,'String',num2str(ref_i));
847if isempty(j1)
848    j1=1;
849end
850if isempty(j2)
851    j2=j1;
852end
853ref_j=floor((j1+j2)/2); % reference image number corresponding to the file
854SeriesData.ref_i=ref_i;
855SeriesData.ref_j=ref_j;
856
857%% update first and last indices to operate if the files do not exist
858if ~Param.Relabel
859    ParamGUI=read_GUI(handles.series);
860    first_j=[];
861    if isfield(ParamGUI.IndexRange,'first_j'); first_j=ParamGUI.IndexRange.first_j; end
862    last_j=[];
863    if isfield(ParamGUI.IndexRange,'last_j'); last_j=ParamGUI.IndexRange.last_j; end
864    PairString='';
865    if isfield(ParamGUI.IndexRange,'PairString'); PairString=ParamGUI.IndexRange.PairString; end
866    [i1,i2,j1,j2] = get_file_index(ParamGUI.IndexRange.first_i,first_j,PairString);
867    FirstFileName=fullfile_uvmat(ParamGUI.InputTable{1,1},ParamGUI.InputTable{1,2},ParamGUI.InputTable{1,3},...
868        ParamGUI.InputTable{1,5},ParamGUI.InputTable{1,4},i1,i2,j1,j2);
869    if ~exist(FirstFileName,'file')
870        set(handles.num_first_i,'String',num2str(ref_i))
871        set(handles.num_first_j,'String',num2str(ref_j))
872    end
873    [i1,i2,j1,j2] = get_file_index(ParamGUI.IndexRange.last_i,last_j,PairString);
874    LastFileName=fullfile_uvmat(ParamGUI.InputTable{1,1},ParamGUI.InputTable{1,2},ParamGUI.InputTable{1,3},...
875        ParamGUI.InputTable{1,5},ParamGUI.InputTable{1,4},i1,i2,j1,j2);
876    if ~exist(LastFileName,'file')
877        set(handles.num_last_i,'String',num2str(ref_i))
878        set(handles.num_last_j,'String',num2str(ref_j))
879    end
880end
881
882%% update the list of recent files in the menubar and save it for future opening
883MenuFile=[{get(handles.MenuFile_1,'Label')};{get(handles.MenuFile_2,'Label')};...
884    {get(handles.MenuFile_3,'Label')};{get(handles.MenuFile_4,'Label')};{get(handles.MenuFile_5,'Label')}];
885str_find=strcmp(InputFile,MenuFile);
886if isempty(find(str_find,1))
887    MenuFile=[{InputFile};MenuFile]; % insert the current file if not already in the list
888end
889for ifile=1:min(length(MenuFile),5)
890    ffname=['MenuFile_' num2str(ifile)];
891    set(handles.(ffname),'Label',MenuFile{ifile});
892end
893dir_perso=prefdir;
894profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
895if exist(profil_perso,'file')
896    save (profil_perso,'MenuFile','-append'); % store the file names for future opening of uvmat
897else
898    save (profil_perso,'MenuFile','-V6'); % store the file names for future opening of uvmat
899end
900% save the opened file to initiate future opening
901SeriesData.RefFile{iview}=InputFile; % reference opening file for line iview
902SeriesData.Ref_i1=i1;
903SeriesData.Ref_i2=i2;
904SeriesData.Ref_j1=j1;
905SeriesData.Ref_j2=j2;
906
907%% define the path for the output files
908[InputPath,Device,DeviceExt]=fileparts(InputTable{1,1});
909[InputPath,Experiment,ExperimentExt]=fileparts(InputPath);
910set(handles.Device,'String',[Device DeviceExt])
911set(handles.Experiment,'String',[Experiment ExperimentExt])
912if ~isempty(regexp(InputTable{1,1},'(^http://)|(^https://)', 'once'))
913    set(handles.OutputPathBrowse,'Value',1)% an output folder needs to be specified for OpenDAP data
914end
915
916%update the output path if needed
917if ~(isfield(SeriesData,'InputPath') && strcmp(SeriesData.InputPath,InputPath))
918    if get(handles.OutputPathBrowse,'Value')==1  % fix the output path in manual modei1_series
919        OutputPathOld=get(handles.OutputPath,'String');
920        OutputPath=uigetdir(OutputPathOld,'pick a root folder for output data');
921        set(handles.OutputPath,'String',OutputPath)
922    else %reproduce the input path for output
923        set(handles.OutputPath,'String',InputPath)
924    end
925    SeriesData.InputPath=InputPath;
926end
927
928
929set(handles.series,'UserData',SeriesData)
930
931set(handles.InputTable,'BackgroundColor',[1 1 1])
932
933
934
935%% initiate input file series and refresh the current field view:
936update_rootinfo(handles,Param,MovieObject,iview);
937
938%% enable field and veltype menus, in accordance with the current action
939ActionName_Callback([],[], handles)
940
941% %% set length of waitbar
942% displ_time(handles)
943
944set(handles.REFRESH,'BackgroundColor',[1 0 0])% set REFRESH  button to red color (end of activation)
945
946%------------------------------------------------------------------------
947% --- get info from the xml file XmlFileName
948function XmlData=read_imadoc(XmlFileName)
949
950[XmlData,errormsg]=imadoc2struct(XmlFileName);
951if ~isempty(errormsg)
952    msgbox_uvmat('WARNING',['error in reading ' XmlFileName ': ' errormsg]);
953end
954% read time if available
955if ~isfield(XmlData,'Time')
956    XmlData.Time=[];
957end
958XmlData.TimeUnit=[];
959if isfield(XmlData,'Camera') && isfield(XmlData.Camera,'TimeUnit')
960    XmlData.TimeUnit=XmlData.Camera.TimeUnit;
961end
962% number of slices
963XmlData.NbSlice=[];
964if isfield(XmlData,'TranslationMotor')&& isfield(XmlData.TranslationMotor,'NbSlice')
965    XmlData.NbSlice=XmlData.TranslationMotor.NbSlice;
966end
967if ~isfield(XmlData,'FileSeries')
968    XmlData.FileSeries=[];
969end
970
971%------------------------------------------------------------------------
972% --- Update information about a new field series (indices to scan, timing,
973%     calibration from an xml file
974function update_rootinfo(handles,Param,VideoObject,iview)
975
976%% default time settings
977TimeUnit='';
978% read  value set by the first series for the append mode (iwiew >1)
979if iview>1
980    TimeUnit=get(handles.TimeUnit,'String');
981end
982TimeName='';
983Time=[]; % default
984TimeMin=[];
985TimeFirst=[];
986TimeLast=[];
987TimeMax=[];
988
989%% determine the min and max indices for the whole file series
990i1_series=Param.i1_series;
991i2_series=Param.i2_series;
992j1_series=Param.j1_series;
993j2_series=Param.j2_series;
994 MaxIndex_j=1;
995if Param.Relabel
996    MinIndex_i=1;
997    MinIndex_j=1;
998    set(handles.num_incr_j,'String','1')
999    MaxIndex_i=numel(i1_series);
1000    set(handles.num_incr_i,'String','1')
1001    if ~isempty(j1_series)
1002        MaxIndex_j=numel(j1_series);
1003    end
1004    Time=Param.XmlData.Time;
1005    TimeMin=Time(2,2);
1006    TimeMax=Time(end,end);
1007    TimeFirst=TimeMin;
1008    TimeLast=TimeMin;
1009    TimeName='xml';
1010else
1011    if isempty(i1_series)
1012        MinIndex_j=1;MaxIndex_j=1;MinIndex_i=1;MaxIndex_i=1;
1013    elseif size(i1_series,2)==2 && min(min(i1_series(:,1,:)))==0
1014        MinIndex_j=1; % index j set to 1 by default
1015        MaxIndex_j=1;
1016        MinIndex_i=find(i1_series(1,2,:), 1 )-1; % min ref index i detected in the series (corresponding to the first non-zero value of i1_series, except for zero index)
1017        MaxIndex_i=find(i1_series(1,2,:),1,'last' )-1; % max ref index i detected in the series (corresponding to the last non-zero value of i1_series)
1018    else
1019        ref_i=squeeze(max(i1_series(1,:,:),[],2)); % select ref_j index for each ref_i
1020        ref_j=squeeze(max(j1_series(1,:,:),[],3)); % select ref_i index for each ref_j
1021        MinIndex_i=find(ref_i, 1 )-1;
1022        MaxIndex_i=find(ref_i, 1, 'last' )-1;
1023        MaxIndex_j=find(ref_j, 1, 'last' )-1;
1024        MinIndex_j=find(ref_j, 1 )-1;
1025        diff_j_max=diff(ref_j);
1026        diff_i_max=diff(ref_i);
1027        if ~isempty(diff_i_max) && isequal (diff_i_max,diff_i_max(1)*ones(size(diff_i_max)))
1028            set(handles.num_incr_i,'String',num2str(diff_i_max(1)))% detect an increment to dispaly by default
1029        end
1030        if ~isempty(diff_j_max) && isequal (diff_j_max,diff_j_max(1)*ones(size(diff_j_max)))
1031            set(handles.num_incr_j,'String',num2str(diff_j_max(1)))
1032        end
1033    end
1034    if isequal(MinIndex_i,-1)
1035        MinIndex_i=0;
1036    end
1037    if isequal(MinIndex_j,-1)
1038        MinIndex_j=0;
1039    end
1040    if isfield(Param,'FileInfo') && isfield(Param.FileInfo,'Software')&&~isempty(Param.FileInfo.Software) && ~isempty(regexp(Param.FileInfo.Software,'^pco.camware', 'once'))
1041        MinIndex_i=0;
1042    end
1043end
1044
1045%% make the j indices visible if relevant
1046if (isempty(j1_series)|| ~isempty(j2_series))% no j series or j1-j2 pair
1047    enable_j(handles,'off');
1048else
1049    enable_j(handles,'on')%%%%remark: put series with j index at the end in the case of a list
1050end
1051
1052SeriesData=get(handles.series,'UserData');
1053if ~Param.Relabel
1054    %% read timing  from the current file (prioritary)
1055    if ~isempty(VideoObject)% case of movies
1056        imainfo=get(VideoObject);
1057        if isfield(imainfo,'NumFrames')
1058            imainfo.NumberOfFrames=imainfo.NumFrames;
1059        end
1060        if isempty(j1_series) % frame index along i
1061            Time=zeros(imainfo.NumberOfFrames+1,2);
1062            Time(:,2)=(0:1/imainfo.FrameRate:(imainfo.NumberOfFrames)/imainfo.FrameRate)';
1063        else
1064            Time=[0;ones(size(i1_series,3)-1,1)]*(0:1/imainfo.FrameRate:(imainfo.NumberOfFrames)/imainfo.FrameRate);
1065        end
1066        TimeName='video';
1067    end
1068
1069    %% get index range in case of relabeling
1070    if isfield(Param,'XmlData') && ~isempty(Param.XmlData.Time)
1071        Time=Param.XmlData.Time;
1072        MinIndex_i=1;
1073        MaxIndex_i=size(Time,1)-1;
1074        MinIndex_j=1;
1075        MaxIndex_j=size(Time,2)-1;
1076        TimeName='xml';
1077    else
1078        InputTable=get(handles.InputTable,'Data');
1079        [XmlFileName,Rank]=find_imadoc(InputTable{iview,1},InputTable{iview,2});
1080        if isempty(XmlFileName)
1081            return
1082        else
1083            Param.XmlData=read_imadoc(XmlFileName);
1084        end
1085        [nbfield,nbfield_j]=size(Param.XmlData.Time);
1086        nbfield=nbfield-1; %remove the possible index 0
1087        nbfield_j=nbfield_j-1; %remove the possible index 0
1088        MaxIndex_i=get(handles.MaxIndex_i,'Data');
1089        MaxIndex_j=get(handles.MaxIndex_j,'Data');
1090        MaxIndex_i(1,:)=nbfield;
1091        MaxIndex_j(1,:)=nbfield_j;
1092        MinIndex_i(1,:)=1;
1093        MinIndex_j(1,:)=1;
1094
1095        first_i=str2double(get(handles.num_first_i,'String'));
1096        first_j=str2double(get(handles.num_first_j,'String'));
1097        %i1=(first_i-SeriesData.FileSeries{1}.FirstFileIndex)*SeriesData.FileSeries{1}.NbFramePerFile+1;%frame index deduced from input file index
1098        i1=1;
1099        if isfield(SeriesData,'TimeName') && strcmp(SeriesData.TimeName,'xml')% indices i and j
1100            j1=mod(i1-1,nbfield_j)+first_j;
1101            i1=floor((i1-1)/nbfield_j)+1;
1102            set(handles.num_first_j,'String',num2str(j1))
1103        end
1104    end
1105end
1106
1107if isfield(Param,'FileInfo') && ~isempty(Param.FileInfo) && strcmp(Param.FileInfo.FileType,'rdvision')
1108    set(handles.OutputSubDir,'String','/im')
1109end
1110
1111%% determine the min and max times: case of Netcdf files will be treated later in FieldName_Callback
1112if ~isempty(TimeName)
1113    if size(Time)<[MaxIndex_i+1 MaxIndex_j+1]
1114        msgbox_uvmat('WARNING',['incomplete time info in xml file']);
1115    end
1116    TimeMin=Time(MinIndex_i+1,MinIndex_j+1);
1117    if size(Time)>=[MaxIndex_i+1 MaxIndex_j+1]
1118        TimeMax=Time(MaxIndex_i+1,MaxIndex_j+1);
1119    end
1120end
1121
1122%% update the tables of Min and Max indices
1123MinIndex_i_table=get(handles.MinIndex_i,'Data'); % retrieve the min indices in the table MinIndex
1124MinIndex_j_table=get(handles.MinIndex_j,'Data'); % retrieve the min indices in the table MinIndex
1125MaxIndex_i_table=get(handles.MaxIndex_i,'Data'); % retrieve the min indices in the table MinIndex
1126MaxIndex_j_table=get(handles.MaxIndex_j,'Data'); % retrieve the min indices in the table MinIndex
1127if ~isempty(MinIndex_i)&&~isempty(MaxIndex_i)
1128    MinIndex_i_table(iview,1)=MinIndex_i;
1129    MaxIndex_i_table(iview,1)=MaxIndex_i;
1130end
1131if ~isempty(MinIndex_j)&&~isempty(MaxIndex_j)
1132    MinIndex_j_table(iview,1)=MinIndex_j;
1133    MaxIndex_j_table(iview,1)=MaxIndex_j;
1134end
1135set(handles.MinIndex_i,'Data',MinIndex_i_table)%display the min indices in the table MinIndex
1136set(handles.MinIndex_j,'Data',MinIndex_j_table)%display the max indices in the table MaxIndex
1137set(handles.MaxIndex_i,'Data',MaxIndex_i_table)%display the min indices in the table MinIndex
1138set(handles.MaxIndex_j,'Data',MaxIndex_j_table)%display the max indices in the table MaxIndex
1139
1140if isfield(Param.XmlData,'NbSlice') && ~isempty(Param.XmlData.NbSlice)
1141    set(handles.num_NbSlice,'String',num2str(Param.XmlData.NbSlice))
1142    set(handles.num_NbSlice,'Visible','on')
1143end
1144
1145
1146%% adjust the first and last indices for the selected series, only if requested by the bounds
1147% i index, compare input to min index i
1148first_i=str2num(get(handles.num_first_i,'String')); % retrieve previous first i
1149% ref_i=str2num(get(handles.num_ref_i,'String')); % index i given by the input field
1150ref_i=1;
1151
1152if isfield(SeriesData,'ref_i')
1153    ref_i=SeriesData.ref_i;
1154end
1155if isempty(first_i)
1156    first_i=ref_i; % first_i updated by the input value
1157elseif first_i < MinIndex_i
1158    first_i=MinIndex_i; % first_i set to the min i index (restricted by oter input lines)
1159elseif first_i >MaxIndex_i
1160    first_i=MaxIndex_i; % first_i set to the max i index (restricted by oter input lines)
1161end
1162% j index,  compare input to min index j
1163first_j=str2num(get(handles.num_first_j,'String'));
1164ref_j=1;
1165if isfield(SeriesData,'ref_j')
1166    ref_j=SeriesData.ref_j;
1167end
1168if isempty(first_j)
1169    first_j=ref_j; % first_j updated by the input value
1170elseif first_j<MinIndex_j
1171    first_j=MinIndex_j; % first_j set to the min j index (restricted by oter input lines)
1172elseif first_j >MaxIndex_j
1173    first_j=MaxIndex_j; % first_j set to the max j index (restricted by oter input lines)
1174end
1175% i index, compare input to max index i
1176last_i=str2num(get(handles.num_last_i,'String'));
1177if isempty(last_i)
1178    last_i=ref_i;
1179elseif last_i > MaxIndex_i
1180    last_i=MaxIndex_i;
1181elseif last_i<first_i
1182    last_i=first_i;
1183end
1184% j index, compare input to max index j
1185last_j=str2num(get(handles.num_last_j,'String'));
1186if isempty(last_j)
1187    last_j=ref_j;
1188elseif last_j>MaxIndex_j
1189    last_j=MaxIndex_j;
1190elseif last_j<first_j
1191    last_j=first_j;
1192end
1193set(handles.num_first_i,'String',num2str(first_i));
1194set(handles.num_first_j,'String',num2str(first_j));
1195set(handles.num_last_i,'String',num2str(last_i));
1196set(handles.num_last_j,'String',num2str(last_j));
1197
1198%% number of slices set by default
1199NbSlice=[]; % default
1200% read  value set by the first series for the append mode (iwiew >1)
1201if iview>1 && strcmp(get(handles.num_NbSlice,'Visible'),'on')
1202    NbSlice=str2double(get(handles.num_NbSlice,'String'));
1203end
1204
1205
1206%% update the time table
1207TimeTable=get(handles.TimeTable,'Data');
1208TimeTable{iview,1}=TimeName;
1209TimeTable{iview,2}=TimeMin;
1210TimeTable{iview,3}=TimeFirst;
1211TimeTable{iview,4}=TimeLast;
1212TimeTable{iview,5}=TimeMax;
1213set(handles.TimeTable,'Data',TimeTable)
1214
1215%% update the series info in 'UserData'
1216SeriesData.i1_series{iview}=i1_series;
1217SeriesData.i2_series{iview}=i2_series;
1218SeriesData.j1_series{iview}=j1_series;
1219SeriesData.j2_series{iview}=j2_series;
1220%     SeriesData.FileType{iview}=FileInfo.FileType;
1221SeriesData.FileInfo{iview}=Param.FileInfo;
1222SeriesData.Time{iview}=Time;
1223SeriesData.TimeName=TimeName;
1224set(handles.series,'UserData',SeriesData)
1225
1226%% updtate the time info
1227displ_time(handles);
1228
1229%% update pair menus
1230InputTable=get(handles.InputTable,'Data');
1231hset_pair=findobj(allchild(0),'Tag','set_pairs');
1232if ~isempty(hset_pair), delete(hset_pair); end % delete the GUI set_pair if opened
1233CheckPair= ~isempty(i2_series)||~isempty(j2_series); % check whether index pairs need to be defined
1234PairString=get(handles.PairString,'Data');
1235PairString{iview,1}=''; % no pair for #iview by default
1236if CheckPair% if pairs need to be display for line iview
1237    [ModeMenu,ModeValue]=update_mode(i1_series,i2_series,j2_series);
1238    Menu=update_listpair(i1_series,i2_series,j1_series,j2_series,ModeMenu{ModeValue},Time,TimeUnit,ref_i,ref_j,TimeName,InputTable(iview,:),Param.FileInfo);
1239    if numel(Menu)>=1
1240        PairString{iview,1}=Menu{1};
1241    end
1242end
1243set(handles.PairString,'Data',PairString)
1244if isempty(find(cellfun('isempty',get(handles.PairString,'Data'))==0, 1))% if all lines of pairs are empty
1245    set(handles.PairString,'Visible','off')
1246    set(handles.SetPairs,'Visible','off')
1247else
1248    set(handles.PairString,'Visible','on')
1249    set(handles.SetPairs,'Visible','on')
1250end
1251
1252
1253%% display the set of existing files as an image with black bands for gaps showing gaps in the series
1254
1255%set(handles.FileStatus,'Units','normalized')
1256nbview=numel(SeriesData.i1_series);
1257i_max=cell(1,nbview);
1258MaxIndex_i=ones(1,nbview); % default
1259MinIndex_i=ones(1,nbview); % default
1260missing_indices=cell(1,nbview);
1261for iline=1:nbview
1262    pair_max=squeeze(max(SeriesData.i1_series{iline},[],1)); % max i1 indices from i1_series (as obtained by fct uvmat/find_file_series.m)
1263                                                            % needed in the case of mutiple pairs for the same index ref_i)
1264    i_max{iline}=max(pair_max,[],1); % max on j index
1265    if ~isempty(i_max{iline})&& ~isequal(pair_max,0)
1266        MaxIndex_i(iline)=find(i_max{iline}, 1, 'last' )-1; % max ref index i
1267        MinIndex_i(iline)=find(i_max{iline}, 1 )-1; % min ref index i
1268         exist_indices{iline}= find(i_max{iline}(2:end)~=0);
1269         index_series=i_max{iline}( exist_indices{iline});
1270    end
1271end
1272MinIndex_i=min(MinIndex_i);
1273MaxIndex_i=max(MaxIndex_i);
1274range_index=MaxIndex_i-MinIndex_i+1;
1275
1276set(handles.FileStatus,'Units','pixels')
1277Position=get(handles.FileStatus,'Position');
1278range_y=max(1,floor(Position(4)/nbview));
1279npx=floor(Position(3));%length of the bar image FileStatus in pixels
1280
1281%file_indices=MinIndex_i+floor(((0.5:npx-0.5)/npx)*range_index)+1;
1282CData=ones(nbview*range_y,npx); % initiate the image representing the existing files
1283if MaxIndex_i>MinIndex_i
1284    LineData=ones(1,npx);
1285    for iline=1:nbview
1286        ind_y=1+(iline-1)*range_y:iline*range_y;
1287%         missing_pixels=floor((missing_indices{iline}-MinIndex_i+1)*npx/range_index)+1;
1288%         LineData(missing_pixels)=0;
1289        %     LineData=zeros(size(file_indices));
1290        %     file_select=file_indices(file_indices<=numel(i_max{iline}));
1291        %     ind_select=file_indices<=numel(i_max{iline});
1292        %     LineData(ind_select)=i_max{iline}(file_select)~=0;
1293        CData(ind_y,:)=ones(numel(ind_y),1)*LineData;%create an image band with width numel(ind_y)
1294    end
1295end
1296CData=cat(3,zeros(size(CData)),CData,zeros(size(CData))); % make color images r=0,g,b=0
1297set(handles.FileStatus,'CData',CData);
1298set(handles.FileStatus,'Units','normalized')
1299%-----------------------------------------------------------guide -------------
1300%------------------------------------------------------------------------
1301%  III - FUNCTIONS ASSOCIATED TO THE FRAME IndexRange
1302%------------------------------------------------------------------------
1303
1304
1305% ---- determine the menu to put in mode and advice a default choice
1306%------------------------------------------------------------------------
1307function [ModeMenu,ModeValue]=update_mode(i1_series,i2_series,j2_series)
1308%------------------------------------------------------------------------
1309ModeMenu={''};
1310if isempty(j2_series)% no j pair
1311    ModeValue=1;
1312    if ~isempty(i2_series)
1313        ModeMenu={'series(Di)'}; % pair menu with only option Di
1314    end
1315else %existence of j pairs
1316    pair_max=squeeze(max(i1_series,[],1)); % max on pair index
1317    j_max=max(pair_max,[],1);
1318    MaxIndex_i=find(j_max, 1, 'last' )-1; % max ref index i
1319    MinIndex_i=find(j_max, 1 )-1; % min ref index i
1320    i_max=max(pair_max,[],2);
1321    MaxIndex_j=find(i_max, 1, 'last' )-1; % max ref index i
1322    MinIndex_j=find(i_max, 1 )-1; % min ref index i
1323    if MaxIndex_j==MinIndex_j
1324        ModeValue=1;
1325        ModeMenu={'bursts'};
1326    elseif MaxIndex_i==MinIndex_i
1327        ModeValue=1;
1328        ModeMenu={'series(Dj)'};
1329    else
1330        ModeMenu={'bursts';'series(Dj)'};
1331        if (MaxIndex_j-MinIndex_j)>10
1332            ModeValue=2; % set mode to series(Dj) if more than 10 j values
1333        else
1334            ModeValue=1;
1335        end
1336    end
1337end
1338
1339
1340%------------------------------------------------------------------------
1341%fill the menu of possible pairs as input
1342function displ_pair=update_listpair(i1_series,i2_series,j1_series,j2_series,mode,time,TimeUnit,ref_i,ref_j,TimeName,InputTable,FileInfo)
1343%------------------------------------------------------------------------
1344displ_pair={};
1345if isempty(TimeUnit)
1346    dtunit='e-03';
1347else
1348    dtunit=['m' TimeUnit];
1349end
1350switch mode
1351    case 'series(Di)'
1352        diff_i=i2_series-i1_series;
1353        min_diff=min(diff_i(diff_i>0));
1354        max_diff=max(diff_i(diff_i>0));
1355        for ipair=min_diff:max_diff
1356            if ~isempty(find(diff_i==ipair,1))% if the considered difference exists as input
1357                pair_string=['Di= ' num2str(-floor(ipair/2)) '|' num2str(ceil(ipair/2)) ];
1358                if size(time,1)>=ref_i+ceil(ipair/2)
1359                    if ref_i<=floor(ipair/2)
1360                        ref_i=floor(ipair/2)+1; % shift ref_i to get the first pair
1361                    end
1362                    Dt=time(ref_i+ceil(ipair/2),ref_j)-time(ref_i-floor(ipair/2),ref_j);
1363                    pair_string=[pair_string ', Dt=' num2str(Dt) ' ' dtunit];
1364                end
1365                displ_pair=[displ_pair;{pair_string}];
1366            end
1367        end
1368        if ~isempty(displ_pair)
1369            displ_pair=[displ_pair;{'Di=*|*'}];
1370        end
1371    case 'series(Dj)'
1372        if isempty(j2_series)
1373            msgbox_uvmat('ERROR','no j1-j2 pair available')
1374            return
1375        end
1376        diff_j=j2_series-j1_series;
1377        min_diff=min(diff_j(diff_j>0));
1378        max_diff=max(diff_j(diff_j>0));
1379        for ipair=min_diff:max_diff
1380            if numel(diff_j(diff_j==ipair))>0
1381                pair_string=['Dj= ' num2str(-floor(ipair/2)) '|' num2str(ceil(ipair/2)) ];
1382                if ~isempty(time)
1383                    if ref_j<=floor(ipair/2)
1384                        ref_j=floor(ipair/2)+1; % shift ref_i to get the first pair
1385                    end
1386                    Dt=time(ref_i,ref_j+ceil(ipair/2))-time(ref_i,ref_j-floor(ipair/2));
1387                    pair_string=[pair_string ', Dt=' num2str(Dt) ' ' dtunit];
1388                end
1389                displ_pair=[displ_pair;{pair_string}];
1390            end
1391        end
1392        if ~isempty(displ_pair)
1393            displ_pair=[displ_pair;{'Dj=*|*'}];
1394        end
1395    case 'bursts'
1396        if isempty(j2_series)
1397            msgbox_uvmat('ERROR','no j1-j2 pair available')
1398            return
1399        end
1400        %diff_j=j2_series-j1_series;
1401        min_j1=min(j1_series(j1_series>0));
1402        max_j1=max(j1_series(j1_series>0));
1403        min_j2=min(j2_series(j2_series>0));
1404        max_j2=max(j2_series(j2_series>0));
1405        for pair1=min_j1:min(max_j1,min_j1+20)
1406            for pair2=min_j2:min(max_j2,min_j2+20)
1407                if numel(j1_series(j1_series==pair1))>0 && numel(j2_series(j2_series==pair2))>0
1408                    pair_string=['j= ' num2str(pair1) '-' num2str(pair2)];
1409                    [TimeValue,DtValue]=get_time(ref_i,[],pair_string,InputTable,FileInfo,TimeName,'Dt');
1410                    %Dt=time(ref_i,pair2+1)-time(ref_i,pair1+1);
1411                    pair_string=[pair_string ', Dt=' num2str(DtValue) ' ' dtunit];
1412                    displ_pair=[displ_pair;{pair_string}];
1413                end
1414            end
1415        end
1416        if ~isempty(displ_pair)
1417            displ_pair=[displ_pair;{'j=*-*'}];
1418        end
1419end
1420
1421%------------------------------------------------------------------------
1422function num_first_i_Callback(hObject, eventdata, handles)
1423%------------------------------------------------------------------------
1424num_last_i_Callback(hObject, eventdata, handles)
1425
1426%------------------------------------------------------------------------
1427function num_last_i_Callback(hObject, eventdata, handles)
1428%------------------------------------------------------------------------
1429SeriesData=get(handles.series,'UserData');
1430if ~isfield(SeriesData,'Time')
1431    SeriesData.Time{1}=[];
1432end
1433displ_time(handles);
1434
1435%------------------------------------------------------------------------
1436function num_first_j_Callback(hObject, eventdata, handles)
1437%------------------------------------------------------------------------
1438 num_last_j_Callback(hObject, eventdata, handles)
1439
1440%------------------------------------------------------------------------
1441function num_last_j_Callback(hObject, eventdata, handles)
1442%------------------------------------------------------------------------
1443SeriesData=get(handles.series,'UserData');
1444if ~isfield(SeriesData,'Time')
1445    SeriesData.Time{1}=[];
1446end
1447displ_time(handles);
1448
1449%------------------------------------------------------------------------
1450% ---- find the times corresponding to the first and last indices of a series
1451function displ_time(handles)
1452%------------------------------------------------------------------------
1453SeriesData=get(handles.series,'UserData'); %
1454if ~isfield(SeriesData,'Time')
1455    return
1456end
1457PairString=get(handles.PairString,'Data');
1458ref_i_1=str2double(get(handles.num_first_i,'String')); % first reference index
1459if isnan(ref_i_1)
1460    ref_i_1=1;
1461end
1462ref_i_2=str2double(get(handles.num_last_i,'String')); % last reference index
1463if isnan(ref_i_2)
1464    ref_i_2=1;
1465end
1466ref_j_1=NaN;ref_j_2=NaN;
1467if strcmp(get(handles.num_first_j,'Visible'),'on')
1468    ref_j_1=str2double(get(handles.num_first_j,'String'));
1469    ref_j_2=str2double(get(handles.num_last_j,'String'));
1470end
1471[i1_1,i2_1,j1_1,j2_1] = get_file_index(ref_i_1,ref_j_1,PairString);
1472[i1_2,i2_2,j1_2,j2_2] = get_file_index(ref_i_2,ref_j_2,PairString);
1473TimeTable=get(handles.TimeTable,'Data');
1474%%%%%%
1475%TODO: read time in netcdf file, see ActionName_Callback
1476%%%%%%%
1477%Pairs=get(handles.PairString,'Data');
1478for iview=1:size(TimeTable,1)
1479    if numel(SeriesData.Time)<iview
1480        break
1481    end
1482    TimeTable{iview,3}=[];
1483    TimeTable{iview,4}=[];
1484    if size(SeriesData.Time{iview},1)>=i2_2+1 && (isnan(ref_j_1)||size(SeriesData.Time{iview},2)>=j2_2+1)
1485        if isnan(ref_j_1)
1486            time_first=(SeriesData.Time{iview}(i1_1+1,2)+SeriesData.Time{iview}(i2_1+1,2))/2;% take  the average between index i1 and i2
1487            time_last=(SeriesData.Time{iview}(i1_2+1,2)+SeriesData.Time{iview}(i2_2+1,2))/2;
1488        else
1489            time_first=(SeriesData.Time{iview}(i1_1+1,j1_1+1)+SeriesData.Time{iview}(i2_1+1,j2_1+1))/2;
1490            time_last=(SeriesData.Time{iview}(i1_2+1,j1_2+1)+SeriesData.Time{iview}(i2_2+1,j2_1+1))/2;
1491        end
1492        TimeTable{iview,3}=time_first; % TODO: take into account pairs
1493        TimeTable{iview,4}=time_last; % TODO: take into account pairs
1494    end
1495end
1496set(handles.TimeTable,'Data',TimeTable)
1497
1498%% set the waitbar position with respect to the min and max in the series
1499MinIndex_i=min(get(handles.MinIndex_i,'Data'));
1500MaxIndex_i=max(get(handles.MaxIndex_i,'Data'));
1501pos_first=(ref_i_1-MinIndex_i)/(MaxIndex_i-MinIndex_i+1);
1502pos_last=(ref_i_2-MinIndex_i+1)/(MaxIndex_i-MinIndex_i+1);
1503if isempty(pos_first), pos_first=0; end
1504if isempty(pos_last), pos_last=1; end
1505Position=get(handles.Waitbar,'Position'); % position of the waitbar:= [ x,y, width, height]
1506Position_status=get(handles.FileStatus,'Position');% position of the FileStatus bar:= [ x,y, width, height]
1507Position(1)=Position_status(1)+Position_status(3)*pos_first;
1508Position(3)=max(Position_status(3)*(pos_last-pos_first),0.001); % width must remain positive
1509set(handles.Waitbar,'Position',Position)
1510update_waitbar(handles.Waitbar,0)
1511
1512%------------------------------------------------------------------------
1513% --- Executes when selected cell(s) is changed in PairString.
1514function PairString_CellSelectionCallback(hObject, eventdata, handles)
1515%------------------------------------------------------------------------
1516if numel(eventdata.Indices)>=1
1517    PairString=get(hObject,'Data');
1518    if ~isempty(PairString{eventdata.Indices(1)})
1519        SetPairs_Callback(hObject, eventdata.Indices(1), handles)
1520    end
1521end
1522
1523
1524%-----------------------------------
1525function enable_j(handles,state)
1526set(handles.j_txt,'Visible',state)
1527set(handles.num_first_j,'Visible',state)
1528set(handles.num_last_j,'Visible',state)
1529set(handles.num_incr_j,'Visible',state)
1530set(handles.MinIndex_j,'Visible',state)
1531set(handles.MaxIndex_j,'Visible',state)
1532
1533
1534%%%%%%%%%%%%%%%%%%%%
1535%%  MAIN ActionName FUNCTIONS
1536%%%%%%%%%%%%%%%%%%%%
1537%------------------------------------------------------------------------
1538% --- Executes on button press in RUN.
1539%------------------------------------------------------------------------
1540function RUN_Callback(hObject, eventdata, handles)
1541
1542%% settings of the button RUN
1543if ~isequal(get(handles.ActionInput,'BackgroundColor'),[1 0 0])
1544    msgbox_uvmat('ERROR','first activate the button ActionInput')
1545    return
1546end
1547set(handles.RUN,'BusyAction','queue'); % activation of STOP button will set BusyAction to 'cancel'
1548set(handles.RUN, 'Enable','Off')% avoid further RUN action until the current one is finished
1549set(handles.RUN,'BackgroundColor',[1 1 0])%show activation of RUN by yellow color
1550drawnow
1551set(handles.status,'Value',0)% desable status display if relevant
1552status_Callback([], eventdata, handles)
1553
1554%% launch action
1555errormsg=launch_action(handles);
1556if ~isempty(errormsg)
1557     msgbox_uvmat('ERROR',errormsg)
1558end
1559
1560%% reset the GUI series
1561update_waitbar(handles.Waitbar,1); % put the waitbar to end position to indicate launching is finished
1562set(handles.RUN, 'Enable','On')
1563set(handles.RUN,'BackgroundColor',[1 0 0])
1564set(handles.RUN, 'Value',0)
1565
1566%------------------------------------------------------------------------
1567% --- called by RUN_Callback
1568%------------------------------------------------------------------------
1569% The calculations are launched in three different ways:
1570% RunMode='local': calculation on the local Matlab session, will prevent other actions during that time.
1571% RunMode='background': calculation on the local computer, but in a new Matlab session (with no graphic output).
1572% RunMode='cluster': calculations dispatched in a cluster, using a managing system, 'oar, 'sge, or 'sgb'.
1573% In the latter case, the calculation is split in 'packets' of i index (all j indices are contained in a single packet).
1574% This splitting is possible only if the different calculations in the series are independent. Otherwise the action
1575% function imposes a number of processes NbSlice in input, for instance NbSlice=1 for a time series.
1576% If NbSlice is not imposed, the splitting in packets (jobs) is determined
1577% so that a job is optimum length AdvisedJobCPUTime), and the total job number in any case smaller
1578% than MaxJobNumber (these parameters are defined in the file series.xml in
1579% accordance with the management strategy for the cluster). The jobs are
1580% dispatched in parallel into NbCore processors by the cluster managing system.
1581
1582function errormsg=launch_action(handles)
1583%errormsg=''; % default
1584
1585%% read the data on the GUI series
1586Param=read_GUI_series(handles); % displayed parameters
1587SeriesData=get(handles.series,'UserData'); % hidden parameters
1588if isfield(SeriesData,'TransformInput')
1589    Param.TransformInput=SeriesData.TransformInput;
1590end
1591if isfield(SeriesData,'ProjObject')
1592    Param.ProjObject=SeriesData.ProjObject;
1593end
1594if isfield(SeriesData,'FileSeries')
1595    Param.FileSeries=SeriesData.FileSeries{1};
1596end
1597if ~isfield(SeriesData,'i1_series')
1598    errormsg='The input field series needs to be refreshed: press REFRESH';
1599    return
1600end
1601if isfield(Param,'InputFields')&& isfield(Param.InputFields,'FieldName')&& isequal(Param.InputFields.FieldName,'add_field...')
1602    errormsg='input field name(s) not defined, select add_field...';
1603    return
1604end
1605[status,result]=system(['svn info ' Param.Action.ActionPath]);
1606if status==0
1607    t=regexp(result,'R.vision\s*:\s*(?<rev>\d+)','names');%detect 'revision' or 'Revision' in the text
1608    if ~isempty(t)
1609        Param.UvmatRevision=t.rev; %version nbre of the current package
1610    end
1611end
1612
1613%% select the Action mode, 'local', 'background' or 'cluster' (if available)
1614RunMode='local'; % default (needed for first opening of the GUI series)
1615if isfield(Param.Action,'RunMode')
1616    RunMode=Param.Action.RunMode;
1617    Param.Action=rmfield(Param.Action,'RunMode'); % remove from the recorded xml file to avoid interference during ImportConfig
1618    Param.RunMode=RunMode; % keep track of the mode
1619end
1620ActionExt='.m'; % default
1621if isfield(Param.Action,'ActionExt')
1622    ActionExt=Param.Action.ActionExt; % '.m', '.sh' (compiled)  or 'fluidimage' (Python)
1623    Param.Action=rmfield(Param.Action,'ActionExt'); % remove from the recorded xml file to avoid interference during ImportConfig
1624end
1625ActionName=Param.Action.ActionName;
1626ActionPath=Param.Action.ActionPath;
1627path_series=fileparts(which('series'));
1628
1629%% create the Action fct handle if RunMode option = 'local'
1630if strcmp(RunMode,'local')
1631    current_dir=pwd; % current working dir
1632    cd(ActionPath)
1633    h_fun=str2func(ActionName);% create the function handle for the function ActionName
1634    cd(current_dir)
1635end
1636
1637%% Get  parameters from series.xml
1638errormsg=''; % default error message
1639ActionFullName=fullfile(get(handles.ActionPath,'String'),ActionName);
1640
1641%% If a compiled version has been selected (ext .sh) check wether it needs to be recompiled
1642if strcmp(ActionExt,'.sh')
1643    TransformPath='';
1644    if isfield(SeriesData,'TransformPath')
1645        TransformPath=SeriesData.TransformPath;
1646        if isfield(SeriesData,'TransformList')
1647            TransformList=get(handles.TransformName,'String');
1648            TransformIndex=get(handles.TransformName,'Value');
1649            TransformName=TransformList{TransformIndex};
1650            if ~ismember(TransformName,SeriesData.TransformList)
1651                TransformPath='';
1652            end
1653        end
1654    end
1655    if ~isempty(TransformPath)&&...
1656          ~strcmp(TransformPath,get(handles.TransformPath,'String'))% if the transform is not in paths set for compilation
1657        msgbox_uvmat('ERROR', 'compilation not available for this transform function, select .m')
1658        return
1659    end
1660    set(handles.series,'Pointer','watch') % set the mouse pointer to 'watch'
1661    set(handles.ActionExt,'BackgroundColor',[1 1 0])
1662    [mcrmajor, mcrminor] = mcrversion;
1663    MCRROOT = ['MCRROOT',int2str(mcrmajor),int2str(mcrminor)];
1664    RunTime = getenv('MCRROOT'); % Just variable MCRROOT with no version in it's name
1665    if strcmp(RunTime,'')
1666        RunTime = getenv(MCRROOT); % Use specialize MCRROOT with version
1667    end
1668    ActionNameVersion=[ActionName '_' MCRROOT];
1669    ActionFullName=fullfile(get(handles.ActionPath,'String'),[ActionNameVersion '.sh']);
1670    % compile the .m file if the .sh file does not exist yet
1671    if ~exist(ActionFullName,'file')
1672        answer=msgbox_uvmat('INPUT_Y-N','compiled version has not been created: compile now?');
1673        if strcmp(answer,'Yes')
1674            set(handles.ActionExt,'BackgroundColor',[1 1 0])
1675            path_uvmat=fileparts(which('series'));
1676            currentdir=pwd;
1677            cd(get(handles.ActionPath,'String'))% go to the directory of Action
1678            addpath(path_uvmat)% add the path to uvmat to run the fct 'compile'
1679            compile(ActionName,TransformPath)
1680            cd(currentdir)
1681        else
1682            errormsg='Action launch interrupted';
1683            return
1684        end
1685    else
1686        sh_file_info=dir(fullfile(get(handles.ActionPath,'String'),[ActionNameVersion '.sh']));
1687        m_file_info=dir(fullfile(get(handles.ActionPath,'String'),[ActionName '.m']));
1688        if isfield(m_file_info,'datenum') && m_file_info.datenum>sh_file_info.datenum
1689            set(handles.ActionExt,'BackgroundColor',[1 1 0])
1690            drawnow
1691            answer=msgbox_uvmat('INPUT_Y-N',[ActionNameVersion '.sh needs to be updated: recompile now?']);
1692            if strcmp(answer,'Yes')
1693                path_uvmat=fileparts(which('series'));
1694                currentdir=pwd;
1695                cd(get(handles.ActionPath,'String'))% go to the directory of Action
1696                addpath(path_uvmat)% add the path to uvmat to run the fct 'compile'
1697                addpath(fullfile(path_uvmat,'transform_field'))% add the path to transform functions to run the fct 'compile'
1698                compile(ActionName,TransformPath)
1699                cd(currentdir)
1700            end
1701        end
1702    end
1703
1704    set(handles.ActionExt,'BackgroundColor',[1 1 1])
1705     set(handles.series,'Pointer','arrow') % set the mouse pointer to 'watch
1706end
1707
1708%% set nbre of cluster cores and processes:
1709% NbCore is the number of computer processors used
1710% NbProcess is the number of independent processes in which the required calculation is split.
1711if ~isfield(Param.IndexRange,'NbSlice')
1712    Param.IndexRange.NbSlice=[];
1713end
1714OutputPath=get(handles.OutputPath,'String');
1715
1716%% Look for processing on multiple experiments set by the GUI browse_data
1717NbExp=1;% initiate the number of experiments set by the GUI browse_data, =1 otherwise
1718if get(handles.Replicate,'Value')
1719    hh=findobj(allchild(0),'Tag','browse_data');
1720    if isempty(hh)
1721        set(handles.Replicate,'Value',0)
1722    else
1723        set(handles.Replicate,'BackgroundColor',[1 1 0])%paint Relicate button in yellow
1724        BrowseData=guidata(hh);
1725        SourceDir=get(BrowseData.SourceDir,'String');
1726        ListExp=get(BrowseData.ListExperiments,'String');
1727        ExpIndices=get(BrowseData.ListExperiments,'Value');
1728        ListExp=ListExp(ExpIndices);
1729        ListDevices=get(BrowseData.ListDevices,'String');
1730        DeviceIndices=get(BrowseData.ListDevices,'Value');
1731        ListDevices=ListDevices(DeviceIndices);
1732        ListDataSeries=get(BrowseData.DataSeries,'String');
1733        DataSeriesIndices=get(BrowseData.DataSeries,'Value');
1734        ListDataSeries=ListDataSeries(DataSeriesIndices);
1735        NbExp=0; % counter of the number of experiments set by the GUI browse_data
1736        for iexp=1:numel(ListExp)
1737            if ~isempty(regexp(ListExp{iexp},'^\+/'))% if it is a folder
1738                for idevice=1:numel(ListDevices)
1739                    if ~isempty(regexp(ListDevices{idevice},'^\+/'))% if it is a folder
1740                        for isubdir=1:numel(ListDataSeries)
1741                            if ~isempty(regexp(ListDataSeries{isubdir},'^\+/'))% if it is a folder
1742                                lpath= fullfile(SourceDir,regexprep(ListExp{iexp},'^\+/',''),...
1743                                    regexprep(ListDevices{idevice},'^\+/',''));
1744                                lpathout= fullfile(OutputPath,regexprep(ListExp{iexp},'^\+/',''),...
1745                                    regexprep(ListDevices{idevice},'^\+/',''));
1746                                ldir= regexprep(ListDataSeries{isubdir},'^\+/','');
1747                                if exist(fullfile(lpath,ldir),'dir')
1748                                    NbExp=NbExp+1;
1749                                    ExpIndex(NbExp)=ExpIndices(iexp);
1750                                    DeviceIndex(NbExp)=DeviceIndices(idevice);
1751                                    ListPath{NbExp}=lpath;
1752                                    ListPathOut{NbExp}=lpathout;
1753                                    ListDeviceOut{NbExp}=regexprep(ListDevices{idevice},'^\+/','');
1754                                    ListExpOut{NbExp}=regexprep(ListExp{iexp},'^\+/','');
1755                                    ListSubdir{NbExp}=ldir;
1756                                end
1757                            end
1758                        end
1759                    end
1760                end
1761                %                 end
1762            end
1763        end
1764        answer=msgbox_uvmat('INPUT_Y-N-Cancel',['replicate the processing on ' num2str(NbExp) ' data series']);
1765        if strcmp(answer,'Cancel')||strcmp(answer,'No')
1766            return
1767        end
1768    end
1769end
1770
1771%%%%%%%%%%%%%%%%%%% LOOP ON EXPERIMENTS POSSIBLY SET BY THE GUI browse_data, NbExp=1 otherwise %%%%%%%%%
1772
1773for iexp=1:NbExp
1774    if get(handles.Replicate,'Value')
1775        if ~strcmp(get(handles.RUN,'BusyAction'),'queue')% allow for STOP action
1776            disp('program stopped by user')
1777            return
1778        end
1779        set(BrowseData.ListExperiments,'Value',ExpIndex(iexp))
1780        set(BrowseData.ListDevices,'Value',DeviceIndex(iexp))
1781        Param.InputTable(:,1)=ListPath(:,iexp);
1782        Param.InputTable(:,2)=ListSubdir(:,iexp);
1783        OutputSubDir=unique(ListSubdir(:,iexp));
1784        Param.OutputSubDir=OutputSubDir{1};
1785        if numel(OutputSubDir)>1% case
1786            for iout=2:numel(OutputSubDir)
1787                Param.OutputSubDir=[Param.OutputSubDir '-' OutputSubDir{iout}];
1788            end
1789        end
1790    end
1791    [~,ExpName]=fileparts(Param.InputTable{1,1});
1792    Param.IndexRange.first_i=str2double(get(handles.num_first_i,'String'));%reset the firrst_i and last_i for multiple experiments, modified by the splitting into NbProcess
1793    Param.IndexRange.last_i=str2double(get(handles.num_last_i,'String'));
1794
1795    %% create the output data directory if needed, after checking its existence
1796    OutputDir='';
1797    answer='';
1798    if isfield(Param,'OutputSubDir')&& isfield(Param,'OutputDirExt')% possibly update the output dir if it already exists
1799        PathOut=get(handles.OutputPath,'String');
1800        if ~exist(PathOut,'dir') % test if  the dir  already exist
1801            PathOut=uigetdir(PathOut,'pick the output root path');
1802            set(handles.OutputPath,'String',PathOut);
1803        end
1804        if get(handles.Replicate,'Value')
1805        PathExpOut=fileparts(ListPath{iexp});
1806        PathExpDeviceOut=ListPath{iexp};
1807        else
1808            PathExpOut=fullfile(PathOut,get(handles.Experiment,'String'));
1809            PathExpDeviceOut=fullfile(PathExpOut,get(handles.Device,'String'));
1810        end
1811        if ~exist(PathExpOut,'dir')
1812            [~,msg1]=mkdir(PathExpOut);
1813            if ~strcmp(msg1,'')
1814                errormsg=['cannot create ' PathExpOut ': ' msg1]; % error message for directory creation
1815                return
1816            end
1817        end
1818        if ~exist(PathExpDeviceOut,'dir')
1819            [~,msg1]=mkdir(PathExpDeviceOut);
1820            if ~strcmp(msg1,'')
1821                errormsg=['cannot create ' PathExpDeviceOut ': ' msg1]; % error message for directory creation
1822                return
1823            end
1824        end
1825
1826        SubDirOut=[Param.OutputSubDir Param.OutputDirExt];
1827        SubDirOutNew=SubDirOut;
1828        detect=exist(fullfile(PathExpDeviceOut,SubDirOutNew),'dir'); % test if  the dir  already exist
1829        check_create=1; % need to create the result directory by default
1830        CheckOverwrite=1;
1831        if isfield(Param,'CheckOverwrite')
1832            CheckOverwrite=Param.CheckOverwrite;% will overwrite previous data if it is equal to 1
1833        end
1834        while detect
1835            if CheckOverwrite
1836                comment=', possibly overwrite previous data';
1837            else
1838                comment=', will complement existing result files (no overwriting)';
1839            end
1840            answer=msgbox_uvmat('INPUT_Y-N-Cancel',['use existing ouput directory: ' fullfile(PathExpDeviceOut,SubDirOutNew) comment]);
1841            if strcmp(answer,'Cancel')
1842                break
1843            elseif strcmp(answer,'Yes')
1844                detect=0;
1845                check_create=0;
1846            else
1847                r=regexp(SubDirOutNew,'(?<root>.*\D)(?<num1>\d+)$','names'); % detect whether name ends by a number
1848                if isempty(r)
1849                    r(1).root=[SubDirOutNew '_'];
1850                    r(1).num1='0';
1851                end
1852                SubDirOutNew=[r(1).root num2str(str2num(r(1).num1)+1)]; % increment the index by 1 or put 1
1853                detect=exist(fullfile(PathExpDeviceOut,SubDirOutNew),'dir'); % test if  the dir  already exists
1854                check_create=1;
1855            end
1856        end
1857        if strcmp(answer,'Cancel')
1858            continue
1859        end
1860        Param.OutputDirExt=regexprep(SubDirOutNew,['^' Param.OutputSubDir],'');
1861        Param.OutputRootFile=Param.InputTable{1,3}; % the first sorted RootFile taken for output
1862        OutputDir=fullfile(PathExpDeviceOut,[Param.OutputSubDir Param.OutputDirExt]); % full name (with path) of output directory
1863        if check_create    % create output directory if it does not exist
1864            [~,msg1]=mkdir(OutputDir);
1865            if ~strcmp(msg1,'')
1866                errormsg=['cannot create ' OutputDir ': ' msg1]; % error message for directory creation
1867                return
1868            end
1869        end
1870
1871    elseif isfield(Param,'ActionInput')&&isfield(Param.ActionInput,'LogPath')% custom definition of the output dir
1872        OutputDir=Param.ActionInput.LogPath;
1873    end
1874    if isfield(Param,'OutputSubDir')&& isfield(Param,'OutputDirExt')
1875        set(handles.OutputSubDir,'String',Param.OutputSubDir)
1876        set(handles.OutputDirExt,'String',Param.OutputDirExt)
1877        drawnow
1878    end
1879    if get(handles.Replicate,'Value')
1880        set(handles.InputTable,'Data',Param.InputTable)
1881        set(handles.OutputPath,'String',OutputPath)
1882         set(handles.Experiment,'String',ListExpOut{iexp})
1883        set(handles.Device,'String',ListDeviceOut{iexp})
1884        Param.Experiment=ListExpOut{iexp};
1885        Param.Device=ListDeviceOut{iexp};
1886        check_input_file_series(handles)
1887    end
1888    DirXml=fullfile(OutputDir,'0_XML');
1889    if ~exist(DirXml,'dir')
1890        [~,msg1]=mkdir(DirXml);
1891        if ~strcmp(msg1,'')
1892            errormsg=['cannot create ' DirXml ': ' msg1]; % error message for directory creation
1893            return
1894        end
1895        [success,msg] = fileattrib(DirXml,'+w','g','s'); % allow writing access for the group of users, recursively in the folder
1896        if success==0
1897            msgbox_uvmat('WARNING',{['unable to set group write access to ' DirXml ':']; msg}); % error message for directory creation
1898        end
1899    end
1900    OutputNomType=nomtype2pair(Param.InputTable{1,4}); % nomenclature for output files
1901
1902    %% get the set of reference input field indices
1903    first_i=1; % first i index to process
1904    last_i=1; % last i index to process
1905    incr_i=1; % increment step in i index
1906    first_j=1; % first j index to process
1907    last_j=1; % last j index to process
1908    incr_j=1; % increment step in j index
1909    if isfield(Param.IndexRange,'first_i')
1910        first_i=Param.IndexRange.first_i;
1911        incr_i=Param.IndexRange.incr_i;
1912        last_i=Param.IndexRange.last_i;
1913    end
1914    if isfield(Param.IndexRange,'incr_j')
1915        first_j=Param.IndexRange.first_j;
1916        last_j=Param.IndexRange.last_j;
1917        incr_j=Param.IndexRange.incr_j;
1918    end
1919    if last_i < first_i || last_j < first_j
1920        errormsg= 'series/Run_Callback:last field index must be larger or equal to the first one';
1921        return
1922    end
1923    %incr_i must be defined, =1 by default, if NbSlice is active
1924    if isempty(incr_i)&& ~isempty(Param.IndexRange.NbSlice)
1925        incr_i=1;
1926        set(handles.num_incr_i,'String','1')
1927    end
1928    % case of no increment i defined: processing is done on the available files found in i1_series
1929    if isempty(incr_i)
1930        if isempty(incr_j)
1931            [ref_j,ref_i]=find(squeeze(SeriesData.i1_series{1}(1,:,:)));
1932            ref_j=ref_j(ref_j>=first_j & ref_j<=last_j);
1933            ref_i=ref_i(ref_i>=first_i & ref_i<=last_i);
1934            ref_j=ref_j-1;
1935            ref_i=ref_i-1;
1936        else
1937            ref_j=first_j:incr_j:last_j;
1938            [~,ref_i]=find(squeeze(SeriesData.i1_series{1}(1,:,:)));
1939            ref_i=ref_i-1;
1940            ref_i=ref_i(ref_i>=first_i & ref_i<=last_i);
1941        end
1942        % increment i is defined: processing is done on first_i:incr_i:last_i;
1943    else
1944        ref_i=first_i:incr_i:last_i;
1945        if isempty(incr_j)% automatic finding of the existing j indices
1946            ref_j=find(squeeze(SeriesData.i1_series{1}(1,:,:)));
1947            ref_j=ref_j-1;
1948            ref_j=ref_j(ref_j>=first_j & ref_j<=last_j);
1949        else
1950            ref_j=first_j:incr_j:last_j;
1951        end
1952    end
1953    nbfield_j=numel(ref_j); % number of j indices
1954    BlockLength=numel(ref_i); % by default, job involves the full set of i field indicesNbProcess
1955    NbProcess=1;
1956    NbCore=1;
1957    switch RunMode
1958        case 'cluster'
1959            if (isfield(Param.Action, 'CPUTime') && ~isempty(Param.Action.CPUTime) && isnumeric(Param.Action.CPUTime))
1960                CPUTime=Param.Action.CPUTime; % Note: CpUTime for one iteration ref_i has to be multiplied by the number of j indices nbfield_j
1961            else
1962                answer=msgbox_uvmat('INPUT_TXT','estimate the CPU time(in minutes) for each value of index i:' ,'');
1963                CPUTime=str2double(answer);
1964                set(handles.num_CPUTime,'String',answer)
1965                Param.Action.CPUTime=CPUTime;
1966            end
1967            if isfield(SeriesData.ClusterParam,'JobNumberMax')
1968                JobNumberMax=SeriesData.ClusterParam.JobNumberMax;
1969            else
1970                disp('ClusterParam.JobNumberMax not documented in series.xml, set to 500 by default')
1971                JobNumberMax=500;
1972            end
1973            if isfield(SeriesData.ClusterParam,'JobCPUTimeAdvised')
1974                JobCPUTimeAdvised=SeriesData.ClusterParam.JobCPUTimeAdvised;
1975            else
1976                disp('ClusterParam.JobCPUTimeAdvised not documented in series.xml, set to 120 minutes by default')
1977                JobCPUTimeAdvised=120;
1978            end
1979            if isempty(Param.IndexRange.NbSlice)% if NbSlice is not defined
1980                BlockLength= ceil(JobCPUTimeAdvised/(CPUTime*nbfield_j)); % iterations are grouped in sets with length BlockLength  such that the typical CPU time of a job is JobCPUTimeAdvised.
1981                BlockLength=max(BlockLength,ceil(numel(ref_i)*NbExp/JobNumberMax)); % possibly increase the BlockLength to have less than MaxJobNumber jobs
1982                NbProcess=ceil(numel(ref_i)/BlockLength) ; % nbre of processes sent to oar
1983            else
1984                NbProcess=Param.IndexRange.NbSlice; % the parameter NbSlice sets the nbre of run processes
1985            end
1986           
1987            %         %proposed number of cores to reserve in the cluster
1988             if isfield(SeriesData.ClusterParam,'NbCoreAdvised')
1989                NbCoreAdvised=SeriesData.ClusterParam.NbCoreAdvised;
1990            else
1991                disp('ClusterParam.NbCoreAdvised not documented in series.xml, set to 16 by default')
1992                NbCoreAdvised=16;
1993             end
1994                if isfield(SeriesData.ClusterParam,'NbCoreMax')
1995                NbCoreMax=min(NbProcess,SeriesData.ClusterParam.NbCoreMax);% reduces the number of cores if it exceeds the number of processes
1996            else
1997                disp('ClusterParam.NbCoreMax not documented in series.xml, set to 36 by default')
1998                NbCoreMax=min(NbProcess,36);
1999                end
2000            if NbCoreMax~=1
2001                if strcmp(ActionExt,'.m')% case of Matlab function (uncompiled)
2002                    warning_string=', preferably use .sh option to save Matlab licences';
2003                else
2004                    warning_string=')';
2005                end
2006                answer=msgbox_uvmat('INPUT_TXT',['Number of cores (limited to ' num2str(NbCoreMax) warning_string],num2str(NbCoreAdvised));
2007                if isempty(answer)||strcmp(answer,'Cancel')
2008                    errormsg='Action launch interrupted by user';
2009                    return
2010                end
2011                NbCore=str2double(answer);
2012                if NbCore > NbCoreMax
2013                    NbCore=NbCoreMax;
2014                end
2015            end
2016        otherwise
2017            if ~isempty(Param.IndexRange.NbSlice)
2018                NbProcess=Param.IndexRange.NbSlice; % the parameter NbSlice sets the nbre of run processes
2019            end
2020    end
2021
2022    %% record nbre of output files and starting time for computation for status
2023    StatusData=get(handles.status,'UserData');
2024    if isfield(StatusData,'OutputFileMode')
2025        switch StatusData.OutputFileMode
2026            case 'NbInput'
2027                StatusData.NbOutputFile=numel(ref_i)*nbfield_j;
2028            case 'NbInput_i'
2029                StatusData.NbOutputFile=numel(ref_i);
2030            case 'NbSlice'
2031                StatusData.NbOutputFile=str2num(get(handles.num_NbSlice,'String'));
2032        end
2033    end
2034    StatusData.TimeStart=now;
2035    set(handles.status,'UserData',StatusData)
2036
2037    %% case of a function in Python
2038    if strcmp(ActionExt, 'fluidimage')
2039        fprintf([
2040            '\n' ...
2041            '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n' ...
2042            'The computation should be done by fluidimage (https://fluidimage.readthedocs.io).\n' ...
2043            'Warning: Fluidimage parameters will be guessed from UVmat parameters but \n' ...
2044            'there is no direct correspondance between UVMAT and fluidimage parameters.\n' ...
2045            'Please report issues here https://foss.heptapod.net/fluiddyn/fluidimage/-/issues\n' ...
2046            '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n'])
2047        RunMode = 'python';
2048    end
2049
2050
2051    %% direct processing on the current Matlab session or creation of command files
2052    filexml=cell(1,NbProcess); % initialisation of the names of the files containing the processing parameters
2053    extxml=cell(1,NbProcess); % initialisation of the set of labels used for the files documenting each process
2054    for iprocess=1:NbProcess
2055        extxml{iprocess}='.xml';
2056    end
2057    for iprocess=1:NbProcess
2058        if ~strcmp(get(handles.RUN,'BusyAction'),'queue')% allow for STOP action
2059            disp('program stopped by user')
2060            return
2061        end
2062        Param.IndexRange.incr_slice=incr_i;
2063        if isempty(Param.IndexRange.NbSlice)
2064            Param.IndexRange.first_i=first_i+(iprocess-1)*BlockLength*incr_i;
2065            if Param.IndexRange.first_i>last_i
2066                NbProcess=iprocess-1; % leave the loop, we are at the end of the calculation
2067                break
2068            end
2069            Param.IndexRange.last_i=min(last_i,first_i+(iprocess)*BlockLength*incr_i-1);
2070        else %multislices (then incr_i is not empty)
2071            Param.IndexRange.first_i= first_i+iprocess-1;
2072            Param.IndexRange.incr_slice=incr_i*Param.IndexRange.NbSlice;
2073        end
2074        for ilist=1:size(Param.InputTable,1)
2075            Param.InputTable{ilist,1}=regexprep(Param.InputTable{ilist,1},'\','/'); % correct path name for PCWIN system
2076        end
2077
2078        if isfield(Param,'OutputSubDir')
2079            t=struct2xml(Param);
2080            t=set(t,1,'name','Series');
2081            extxml{iprocess}=fullfile_uvmat('','',Param.InputTable{1,3},'.xml',OutputNomType,...
2082                Param.IndexRange.first_i,Param.IndexRange.last_i,first_j,last_j);
2083            filexml{iprocess}=fullfile(OutputDir,'0_XML',extxml{iprocess});
2084            try
2085                save(t, filexml{iprocess}); % save the xml file containing the processing parameters
2086            catch ME
2087                if ~strcmp (RunMode,'local')
2088                    errormsg=['error writting ' filexml{iprocess} ': ' ME.message];
2089                    return
2090                end
2091            end
2092        end
2093        if strcmp (RunMode,'local')
2094            switch ActionExt
2095                case '.m'
2096                    h_fun(Param); % direct launching
2097
2098                case '.sh'
2099                    switch computer
2100                        case {'PCWIN','PCWIN64'} %Windows system
2101                            filexml=regexprep(filexml,'\\','\\\\'); % add '\' so that '\' are left as characters
2102                            system([ActionFullName ' ' RunTime ' ' filexml{iprocess}]); % TODO: adapt to DOS system
2103                        case {'GLNX86','GLNXA64','MACI64'}%Linux  system
2104                            system([ActionFullName ' ' RunTime ' ' filexml{iprocess}]);
2105                    end
2106            end
2107        end
2108    end
2109
2110    if ~strcmp (RunMode,'local') && ~strcmp(RunMode,'python')
2111        %% processing on a different session of the same computer (background) or cluster, create executable files
2112        batch_file_list=cell(NbProcess,1); % initiate the list of executable files
2113        DirExe=fullfile(OutputDir,'0_EXE'); % directory name for executable files
2114        switch computer
2115            case {'PCWIN','PCWIN64'} %Windows system
2116                ExeExt='.bat';
2117            case {'GLNX86','GLNXA64','MACI64'}%Linux  system
2118                ExeExt='.sh';
2119        end
2120        %create subdirectory for executable files
2121        if ~exist(DirExe,'dir')
2122            [tild,msg1]=mkdir(DirExe);
2123            if ~strcmp(msg1,'')
2124                errormsg=['cannot create ' DirExe ': ' msg1]; % error message for directory creation
2125                return
2126            end
2127            [success,msg] = fileattrib(DirExe,'+w','g','s'); % allow writing access for the group of users, recursively in the folder
2128            if success==0
2129                msgbox_uvmat('WARNING',{['unable to set group write access to ' DirExe ':']; msg}); % error message for directory creation
2130            end
2131        end
2132        %create subdirectory for log files
2133        DirLog=fullfile(OutputDir,'0_LOG');
2134        if ~exist(DirLog,'dir')
2135            [tild,msg1]=mkdir(DirLog);
2136            if ~strcmp(msg1,'')
2137                errormsg=['cannot create ' DirLog ': ' msg1]; % error message for directory creation
2138                return
2139            end
2140            [success,msg] = fileattrib(DirLog,'+w','g','s'); % allow writing access for the group of users, recursively in the folder
2141            if success==0
2142                msgbox_uvmat('WARNING',{['unable to set group write access to ' DirLog ':']; msg}); % error message for directory creation
2143            end
2144        end
2145
2146        %create the executable and log file names
2147        file_exe_global=fullfile_uvmat('','',Param.InputTable{1,3},ExeExt,OutputNomType,...
2148            first_i,last_i,first_j,last_j);
2149        file_exe_global=fullfile(OutputDir,'0_EXE',file_exe_global);
2150        filelog_global=fullfile_uvmat('','',Param.InputTable{1,3},'.log',OutputNomType,...
2151            first_i,last_i,first_j,last_j);
2152        filelog_global=fullfile(OutputDir,'0_LOG',filelog_global);
2153
2154        for iprocess=1:NbProcess
2155            batch_file_list{iprocess}=fullfile(OutputDir,'0_EXE',regexprep(extxml{iprocess},'.xml$',ExeExt)); % executable file names
2156            filelog{iprocess}=fullfile(OutputDir,'0_LOG',regexprep(extxml{iprocess},'.xml$','.log'));% corresponding log file names
2157        end
2158    end
2159
2160    %% launch the executable files for background or cluster processing
2161
2162    switch RunMode
2163
2164        case 'background'
2165            [fid,message]=fopen(file_exe_global,'w');
2166            if isequal(fid,-1)
2167                errormsg=['creation of ' file_exe_global ':' message];
2168                return
2169            end
2170            switch ActionExt
2171                case '.m'% Matlab function
2172                    switch computer
2173                        case {'GLNX86','GLNXA64','MACI64'}
2174                            cmd=command_launch_matlab(filelog_global,path_series,Param.Action.ActionPath,Param.Action.ActionName,filexml,'background');
2175                            fprintf(fid,cmd); % fill the executable file with the  char string cmd
2176                            fclose(fid); % close the executable filefilelog_global
2177                            system(['chmod +x ' file_exe_global]); % set the file to executable
2178                        case {'PCWIN','PCWIN64'}
2179                            cmd=['matlab -automation -logfile ' regexprep(filelog{iprocess},'\\','\\\\')...
2180                                ' -r "addpath(''' regexprep(path_series,'\\','\\\\') ''');'...
2181                                'addpath(''' regexprep(Param.Action.ActionPath,'\\','\\\\') ''');'];
2182                            for iprocess=1:NbProcess
2183                                cmd=[cmd '' Param.Action.ActionName  '( ''' regexprep(filexml{iprocess},'\\','\\\\') ''');']
2184                            end
2185                            cmd=[cmd ';exit"'];
2186                            fprintf(fid,cmd); % fill the executable file with the  char string cmd
2187                            fclose(fid); % close the executable file
2188                    end
2189                    system([file_exe_global ' &'])% directly execute the command file
2190                case '.sh' % compiled Matlab function
2191                    for iprocess=1:NbProcess
2192                        switch computer
2193                            case {'GLNX86','GLNXA64','MACI64'}
2194                                [fid,message]=fopen(batch_file_list{iprocess},'w'); % create the executable file
2195                                if isequal(fid,-1)
2196                                    errormsg=['creation of .bat file: ' message];
2197                                    return
2198                                end
2199                                cmd=['#!/bin/bash \n '...
2200                                    '#$ -cwd \n '...
2201                                    'hostname && date \n '...
2202                                    'umask 002 \n'...
2203                                    ActionFullName ' ' RunTime ' ' filexml{iprocess}]; % allow writting access to created files for user group
2204                                fprintf(fid,cmd); % fill the executable file with the  char string cmd
2205                                fclose(fid); % close the executable file
2206                                system(['chmod +x ' batch_file_list{iprocess}]); % set the file to executable
2207                                system([batch_file_list{iprocess} ' &'])% directly execute the command file
2208                            case {'PCWIN','PCWIN64'}
2209                                msgbox_uvmat('ERROR','option for compiled Matlab functions not implemented for Windows system')
2210                                return
2211                        end
2212                    end
2213                    msgbox_uvmat('CONFIRMATION',[ActionFullName ' launched in background for ' ExpName ': press STATUS to see results'])
2214            end
2215
2216        case 'cluster' % option 'oar-parexec' used
2217            %create subdirectory for oar commands
2218            for iprocess=1:NbProcess
2219                [fid,message]=fopen(batch_file_list{iprocess},'w'); % create the executable file
2220                if isequal(fid,-1)
2221                    errormsg=['creation of .bat file: ' message];
2222                    return
2223                end
2224                if  strcmp(ActionExt,'.sh')
2225                    cmd=['#!/bin/bash \n '...
2226                        '#$ -cwd \n '...
2227                        'hostname && date \n '...
2228                        'umask 002 \n'...
2229                        ActionFullName ' ' RunTime ' ' filexml{iprocess}]; % allow writting access to created files for user group
2230                else
2231                    cmd=command_launch_matlab(filelog_global,path_series,Param.Action.ActionPath,Param.Action.ActionName,filexml{iprocess},'cluster');
2232 
2233                end
2234                fprintf(fid,cmd); % fill the executable file with the  char string cmd
2235                fclose(fid); % close the executable file
2236                system(['chmod +x ' batch_file_list{iprocess}]); % set the file to executable
2237            end
2238            DIR_CLUSTER=fullfile(OutputDir,'0_CLUSTER');
2239            if exist(DIR_CLUSTER,'dir')% delete the content of the dir 0_LOG to allow new input
2240                curdir=pwd;
2241                cd(DIR_CLUSTER)
2242                delete('*')
2243                cd(curdir)
2244            else
2245                [~,msg1]=mkdir(DIR_CLUSTER);
2246                if ~strcmp(msg1,'')
2247                    errormsg=['cannot create ' DIR_CLUSTER ': ' msg1]; % error message for directory creation
2248                    return
2249                end
2250            end
2251            % create file containing the list of jobs
2252            ListProcess=fullfile(DIR_CLUSTER,'job_list.txt'); % name of the file containing the list of executables
2253            [fid,errormsg]=fopen(ListProcess,'w'); % open it for writting
2254            if isempty(errormsg)
2255            for iprocess=1:length(batch_file_list)
2256                fprintf(fid,[batch_file_list{iprocess} '\n']); % write list of exe files
2257            end
2258            fclose(fid);
2259            system(['chmod +x ' ListProcess]); % set the file to executable
2260            else
2261                errormsg=['error for writting the executable file:' errormsg];
2262            end
2263            CPUTimeProcess=CPUTime*BlockLength*nbfield_j; % estimated CPU time for one individual process (in minutes)
2264            if isfield(SeriesData.ClusterParam,'LaunchCmdFcn')&& exist(SeriesData.ClusterParam.LaunchCmdFcn,'file')
2265            LaunchCmdFcn=SeriesData.ClusterParam.LaunchCmdFcn;% command obtained from the function
2266            else
2267                disp('no ClusterParam.LaunchCmdFcn defined in series.xml')
2268                return
2269            end
2270            oar_command=feval(LaunchCmdFcn,ListProcess,ActionFullName,DirLog,NbProcess, NbCore,CPUTimeProcess)
2271            [status,result]=system(oar_command)% execute system command and show the result (ID number of the launched job) on the Matlab command window
2272            filename_oarcommand=fullfile(DIR_CLUSTER,'0_cluster_command'); % keep track of the command in file '0-OAR/0_cluster_command'
2273            [fid,errormsg]=fopen(filename_oarcommand,'w');
2274            if ~isempty(errormsg)
2275                msgbox_uvmat('ERROR',['cannot create ' filename_oarcommand ': ' errormsg])
2276                return
2277            end
2278            fprintf(fid,oar_command); % store the command
2279            fprintf(fid,result); % store the result (job ID number)
2280            fclose(fid);
2281            if status==0
2282                msgbox_uvmat('CONFIRMATION',[ActionFullName ' launched for ' ExpName ' as ' num2str(NbProcess) ' processes in cluster: press STATUS to see results'])
2283            else
2284                msgbox_uvmat('ERROR',result)
2285            end
2286            %     case 'cluster_pbs' % for LMFA Kepler machine:  trqnsferred to fct
2287
2288            %         %create subdirectory for pbs command and log files
2289            %         DirPBS=fullfile(OutputDir,'0_PBS'); % todo : common name OAR/PBS
2290            %         if exist(DirPBS,'dir')% delete the content of the dir 0_LOG to allow new input
2291            %             curdir=pwd;
2292            %             cd(DirPBS)
2293            %             delete('*')
2294            %             cd(curdir)
2295            %         else
2296            %             [tild,msg1]=mkdir(DirPBS);
2297            %             if ~strcmp(msg1,'')
2298            %                 errormsg=['cannot create ' DirPBS ': ' msg1]; % error message for directory creation
2299            %                 return
2300            %             end
2301            %         end
2302            %         max_walltime=3600*20; % 20h max total calculation (cannot exceed 24 h)
2303            %         walltime_onejob=1800; % seconds, max estimated time for asingle file index value
2304            %         ListProcess=fullfile(DirPBS,'job_list.txt'); % create name of the global executable file
2305            %         fid=fopen(ListProcess,'w');
2306            %         for iprocess=1:length(batch_file_list)
2307            %             fprintf(fid,[batch_file_list{iprocess} '\n']); % list of exe files
2308            %         end
2309            %         fclose(fid);
2310            %         system(['chmod +x ' ListProcess]); % set the file to executable
2311            %         pbs_command=['qsub -n CIVX '...
2312            %             '-t idempotent --checkpoint ' num2str(walltime_onejob+60) ' '...
2313            %             '-l /core=' num2str(NbCore) ','...
2314            %             'walltime=' datestr(min(1.05*walltime_onejob/86400*max(NbProcess*BlockLength*nbfield_j,NbCore)/NbCore,max_walltime/86400),13) ' '...
2315            %             '-E ' regexprep(ListProcess,'\.txt\>','.stderr') ' '...
2316            %             '-O ' regexprep(ListProcess,'\.txt\>','.log') ' '...
2317            %             extra_qstat ' '...
2318            %             '"oar-parexec -s -f ' ListProcess ' '...
2319            %             '-l ' ListProcess '.log"'];
2320            %         filename_oarcommand=fullfile(DirPBS,'pbs_command');
2321            %         fid=fopen(filename_oarcommand,'w');
2322            %         fprintf(fid,pbs_command);
2323            %         fclose(fid);
2324            %         fprintf(pbs_command); % display in command line
2325            %         %system(pbs_command);
2326            %         msgbox_uvmat('CONFIRMATION',[ActionFullName ' command ready to be launched in cluster'])
2327
2328        case 'cluster_sge' % for PSMN % TODO: use the standard 'cluster' config with an external fct
2329            % Au PSMN, on ne cr??e pas 1 job avec plusieurs c??urs, mais N jobs de 1 c??urs
2330            % o?? N < 1000.
2331            %create subdirectory for pbs command and log files
2332
2333            DirSGE=fullfile(OutputDir,'0_SGE');
2334            if exist(DirSGE,'dir')% delete the content of the dir 0_LOG to allow new input
2335                curdir=pwd;
2336                cd(DirSGE)
2337                delete('*')
2338                cd(curdir)
2339            else
2340                [~,msg1]=mkdir(DirSGE);
2341                if ~strcmp(msg1,'')
2342                    errormsg=['cannot create ' DirSGE ': ' msg1]; % error message for directory creation
2343                    return
2344                end
2345            end
2346            maxImgsPerJob = ceil(length(batch_file_list)/NbCore);
2347            disp(['Max number of jobs: ' num2str(NbCore)])
2348            disp(['Images per job: ' num2str(maxImgsPerJob)])
2349
2350            iprocess = 1;
2351            imgsInJob = [];
2352            currJobIndex = 1;
2353            done = 0;
2354            while(~done)
2355                if(iprocess <= length(batch_file_list))
2356                    imgsInJob = [imgsInJob, iprocess];
2357                end
2358                if((numel(imgsInJob) >= maxImgsPerJob) || (iprocess == length(batch_file_list)))
2359                    cmd=['#!/bin/sh \n'...
2360                        '#$ -cwd \n'...
2361                        'hostname && date\n']
2362                    for ii=1:numel(imgsInJob)
2363                        cmd=[cmd ActionFullName ' /softs/matlab ' filexml{imgsInJob(ii)} '\n'];
2364                    end
2365                    fid = fopen([DirSGE '/job' num2str(currJobIndex) '.sh'], 'w');
2366                    fprintf(fid, cmd);
2367                    fclose(fid);
2368                    system(['chmod +x ' DirSGE '/job' num2str(currJobIndex) '.sh'])
2369                    sge_command=['qsub -N civ_' num2str(currJobIndex) ' '...
2370                        '-q ' qstat_Queue ' '...
2371                        '-e ' fullfile([DirSGE '/job' num2str(currJobIndex) '.out']) ' '...
2372                        '-o ' fullfile([DirSGE '/job' num2str(currJobIndex) '.out']) ' '...
2373                        fullfile([DirSGE '/job' num2str(currJobIndex) '.sh'])];
2374                    fprintf(sge_command); % display in command line
2375                    [~, result] = system(sge_command);
2376                    fprintf(result);
2377                    currJobIndex = currJobIndex + 1;
2378                    imgsInJob = [];
2379                end
2380                if(iprocess == length(batch_file_list))
2381                    done = 1;
2382                end
2383                iprocess = iprocess + 1;
2384            end
2385            msgbox_uvmat('CONFIRMATION',[num2str(currJobIndex-1) ' jobs launched on queue ' qstat_Queue '.'])
2386        case 'python'
2387            command = ['python -m fluidimage.run_from_xml ' filexml{iprocess}];
2388            fprintf(['command:\n' command '\n\n'])
2389          %  [status, result] = call_command_clean(command);
2390    end
2391    if exist(OutputDir,'dir')
2392        [~,MESSAGE] = fileattrib (OutputDir);
2393        if MESSAGE.GroupWrite~=1
2394            [success,msg] = fileattrib(OutputDir,'+w','g','s'); % allow writing access for the group of users, recursively in the folder
2395            if success==0
2396                msgbox_uvmat('WARNING',{['unable to set group write access to ' OutputDir ':']; msg}); % error message for directory creation
2397            end
2398        end
2399    end
2400end
2401set(handles.Replicate,'BackgroundColor',[0 1 0])
2402
2403%------------------------------------------------------------------------
2404function STOP_Callback(hObject, eventdata, handles)
2405%------------------------------------------------------------------------
2406set(handles.RUN, 'BusyAction','cancel')
2407set(handles.RUN,'BackgroundColor',[1 0 0])
2408set(handles.RUN,'enable','on')
2409set(handles.RUN, 'Value',0)
2410
2411%------------------------------------------------------------------------
2412% --- read parameters from the GUI series
2413%------------------------------------------------------------------------
2414function Param=read_GUI_series(handles)
2415
2416%% read raw parameters from the GUI series
2417Param=read_GUI(handles.series);
2418
2419%% clean the output structure by removing unused information
2420if isfield(Param,'Pairs')
2421    Param=rmfield(Param,'Pairs'); % info Pairs not needed for output
2422end
2423if isfield(Param,'InputLine')
2424    Param=rmfield(Param,'InputLine');
2425end
2426if isfield(Param,'EditObject')
2427    Param=rmfield(Param,'EditObject');
2428end
2429Param.IndexRange.TimeSource=Param.IndexRange.TimeTable{end,1};
2430Param.IndexRange=rmfield(Param.IndexRange,'TimeTable');
2431empty_line=false(size(Param.InputTable,1),1);
2432for iline=1:size(Param.InputTable,1)
2433    empty_line(iline)=isempty(cell2mat(Param.InputTable(iline,1:3)));
2434end
2435Param.InputTable(empty_line,:)=[];
2436
2437%------------------------------------------------------------------------
2438% --- Executes on selection change in ActionName.
2439function ActionName_Callback(hObject, ActionPath, handles)
2440%------------------------------------------------------------------------
2441
2442%% stop any ongoing series processing
2443if isequal(get(handles.RUN,'Value'),1)
2444    answer= msgbox_uvmat('INPUT_Y-N','stop current Action process?');
2445    if strcmp(answer,'Yes')
2446        STOP_Callback(hObject, [], handles)
2447    else
2448        return
2449    end
2450end
2451set(handles.ActionName,'BackgroundColor',[1 1 0])
2452huigetfile=findobj(allchild(0),'tag','status_display');
2453if ~isempty(huigetfile)
2454    delete(huigetfile)
2455end
2456drawnow
2457
2458%% get Action name and path
2459NbBuiltinAction=get(handles.Action,'UserData'); % nbre of functions initially proposed in the menu ActionName (as defined in the Opening fct of series)
2460ActionList=get(handles.ActionName,'String'); % list menu fields
2461ActionIndex=get(handles.ActionName,'Value');
2462if ~isequal(ActionIndex,1)% if we are not just opening series
2463    InputTable=get(handles.InputTable,'Data');
2464    if isempty(InputTable{1,4})
2465        msgbox_uvmat('ERROR','no input file available: use Open in the menu bar')
2466        return
2467    end
2468end
2469ActionName= ActionList{get(handles.ActionName,'Value')}; % selected function name
2470ActionPathList=get(handles.ActionName,'UserData'); % list of recorded paths to functions of the list ActionName
2471
2472%% add a new function to the menu if 'more...' has been selected in the menu ActionName
2473if isequal(ActionName,'more...')
2474    if ~ischar(ActionPath)
2475        ActionPath=get(handles.ActionPath,'String');
2476    end
2477    [FileName, PathName] = uigetfile( ...
2478        {'*.m', ' (*.m)';
2479        '*.m',  '.m files '; ...
2480        '*.*', 'All Files (*.*)'}, ...
2481        'Pick a series processing function ',ActionPath);
2482    if length(FileName)<2
2483        return
2484    end
2485    [~,ActionName,ActionExt]=fileparts(FileName);
2486
2487    % insert the choice in the menu ActionName
2488    ActionIndex=find(strcmp(ActionName,ActionList),1); % look for the selected function in the menu Action
2489    PathName=regexprep(PathName,'/$','');
2490    if ~isempty(ActionIndex) && ~strcmp(ActionPathList{ActionIndex},PathName)%compare the path to the existing fct
2491        ActionIndex=[]; % the selected path is different than the recorded one
2492    end
2493    if isempty(ActionIndex)%the qselected fct (with selected path) does not exist in the menu
2494        ActionIndex= length(ActionList);
2495        ActionList=[ActionList(1:end-1);{ActionName};ActionList(end)]; % the selected function is appended in the menu, before the last item 'more...'
2496         ActionPathList=[ActionPathList; PathName];
2497    end
2498
2499    % record the file extension and extend the path list if it is a new extension
2500    ActionExtList=get(handles.ActionExt,'String');
2501    ActionExtIndex=find(strcmp(ActionExt,ActionExtList), 1);
2502    if isempty(ActionExtIndex)
2503        set(handles.ActionExt,'String',[ActionExtList;{ActionExt}])
2504    end
2505
2506    % remove old Action options in the menu (keeping a menu length <nb_builtin_ACTION+5)
2507    if length(ActionList)>NbBuiltinAction+5% nb_builtin_ACTION=nbre of functions always remaining in the initial menu
2508        nbremove=length(ActionList)-NbBuiltinAction-5;
2509        ActionList(NbBuiltinAction+1:end-5)=[];
2510        ActionPathList(NbBuiltinAction+1:end-4,:)=[];
2511        ActionIndex=ActionIndex-nbremove;
2512    end
2513
2514    % record action menu, choice and path
2515    set(handles.ActionName,'Value',ActionIndex)
2516    set(handles.ActionName,'String',ActionList)
2517       set(handles.ActionName,'UserData',ActionPathList);
2518    set(handles.ActionExt,'Value',ActionExtIndex)
2519
2520    %record the user defined menu additions in personal file profil_perso
2521    dir_perso=prefdir;
2522    profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
2523    if NbBuiltinAction+1<=numel(ActionList)-1
2524        ActionListUser=ActionList(NbBuiltinAction+1:numel(ActionList)-1);
2525        ActionPathListUser=ActionPathList(NbBuiltinAction+1:numel(ActionList)-1);
2526        ActionExtListUser={};
2527        if numel(ActionExtList)>2
2528            ActionExtListUser=ActionExtList(3:end);
2529        end
2530        if exist(profil_perso,'file')
2531            save(profil_perso,'ActionListUser','ActionPathListUser','ActionExtListUser','-append')
2532        else
2533            save(profil_perso,'ActionListUser','ActionPathListUser','ActionExtListUser','-V6')
2534        end
2535    end
2536end
2537
2538%% check the current ActionPath to the selected function
2539ActionPath=ActionPathList{ActionIndex}; % current recorded path
2540set(handles.ActionPath,'String',ActionPath); % show the path to the selected function
2541
2542%% reinitialise the waitbar
2543update_waitbar(handles.Waitbar,0)
2544
2545%% Put the first line of the selected Action fct as tooltip help
2546try
2547    fid=fopen([fullfile(ActionPath,ActionName) '.m']);
2548    InputText=textscan(fid,'%s',1,'delimiter','\n');
2549    fclose(fid);
2550    set(handles.ActionName,'ToolTipString',InputText{1}{1})% put the first line of the selected function as tooltip help
2551end
2552set(handles.ActionName,'BackgroundColor',[1 1 1])
2553set(handles.ActionInput,'BackgroundColor',[1 0 1])% set ActionInput button to magenta color to indicate that input refr
2554set(handles.num_CPUTime,'String','')
2555
2556% --- Executes on button press in ActionInput.
2557function ActionInput_Callback(hObject, eventdata, handles)
2558
2559set(handles.ActionInput,'BackgroundColor',[1 1 0])
2560SeriesData=get(handles.series,'UserData'); % info on the input file series
2561
2562%% create the function handle for Action
2563ActionPath=get(handles.ActionPath,'String');
2564ActionList=get(handles.ActionName,'String');
2565ActionName= ActionList{get(handles.ActionName,'Value')}; % selected function name
2566if ~exist(ActionPath,'dir')
2567    ActionName_Callback(handles.ActionName, ActionPath, handles)% update the function
2568    return
2569end
2570current_dir=pwd; % current working dir
2571cd(ActionPath)
2572h_fun=str2func(ActionName);% create the function handle for the function ActionName
2573cd(current_dir)
2574
2575%% Activate the Action fct to adapt the configuration of the GUI series and bring specific parameters in SeriesData
2576Param=read_GUI_series(handles); % read the parameters from the GUI series
2577Param.Action.RUN=0;% indicate that we are in the mode of parameter input, not program run
2578Param.SeriesData=SeriesData;% info stored in 'UserData' of the fig 'series'
2579ParamOut=h_fun(Param); % run the selected Action function to get the relevant input
2580
2581
2582%% Visibility of VelType and VelType_1 menus asked by ActionName
2583VelTypeRequest=1; % VelType requested by default
2584VelTypeRequest_1=1; % VelType requested by default
2585if isfield(ParamOut,'VelType')
2586    VelTypeRequest=ismember(ParamOut.VelType,{'on','one','two'});
2587    VelTypeRequest_1=strcmp( ParamOut.VelType,'two');
2588end
2589FieldNameRequest=0;  %hidden by default
2590FieldNameRequest_1=0;  %hidden by default
2591if isfield(ParamOut,'FieldName')
2592    FieldNameRequest=ismember(ParamOut.FieldName,{'on','one','two'});
2593    FieldNameRequest_1=strcmp( ParamOut.FieldName,'two');
2594end
2595
2596%% Detect the types of input files and set menus and default options in 'VelType'
2597% if ~isfield(SeriesData,'FileType')
2598%     SeriesData.FileType={'none'};
2599% end
2600iview_civ=[];
2601iview_netcdf=[];
2602for iview=1:numel(SeriesData.FileInfo)
2603    if strcmp(SeriesData.FileInfo{iview}.FileType,'civx')||strcmp(SeriesData.FileInfo{iview}.FileType,'civdata')
2604      iview_civ=[iview_civ iview];
2605      iview_netcdf=[iview_netcdf iview];% all nc files, icluding civ
2606    elseif strcmp(SeriesData.FileInfo{iview}.FileType,'netcdf')
2607      iview_netcdf=[iview_netcdf iview];
2608    end
2609end
2610
2611FieldList=get(handles.FieldName,'String'); % previous list as default
2612if ~iscell(FieldList),FieldList={FieldList};end
2613FieldList_1=get(handles.FieldName_1,'String'); % previous list as default
2614if ~iscell(FieldList_1),FieldList_1={FieldList_1};end
2615CheckPivData_1=0; % indicate whether FieldName_1 has been updated with civ data, 0 by default
2616handles_coord=[handles.Coord_x handles.Coord_y handles.Coord_z handles.Coord_x_title handles.Coord_y_title handles.Coord_z_title];
2617if VelTypeRequest && numel(iview_civ)>=1
2618    menu=set_veltype_display(SeriesData.FileInfo{iview_civ(1)}.CivStage,SeriesData.FileInfo{iview_civ(1)}.FileType);
2619    set(handles.VelType,'Value',1)% set first choice by default
2620    set(handles.VelType,'String',[{'*'};menu])
2621    set(handles.VelType,'Visible','on')
2622    set(handles.VelType_title,'Visible','on')
2623    FieldList=set_field_list('U','V'); % standard menu for civx data
2624    if max(get(handles.FieldName,'Value'))>numel(FieldList)
2625        set(handles.FieldName,'Value',1); % velocity vector choice by default
2626    end
2627    if  VelTypeRequest_1 && numel(iview_civ)>=2
2628        menu=set_veltype_display(SeriesData.FileInfo{iview_civ(2)}.CivStage,SeriesData.FileInfo{iview_civ(2)}.FileType);
2629        set(handles.VelType_1,'Value',1)% set first choice by default
2630        set(handles.VelType_1,'String',[{'*'};menu])
2631        set(handles.VelType_1,'Visible','on')
2632        set(handles.VelType_title_1,'Visible','on')
2633        FieldList_1=[set_field_list('U','V');{'C'};{'add_field...'}]; % standard menu for civx data
2634        CheckPivData_1=1;
2635        set(handles.FieldName_1,'Value',1); % velocity vector choice by default
2636    else
2637        set(handles.VelType_1,'Visible','off')
2638        set(handles.VelType_title_1,'Visible','off')
2639    end
2640else
2641    set(handles.VelType,'Visible','off')
2642    set(handles.VelType_title,'Visible','off')
2643end
2644
2645%% Detect the types of input files and set menus and default options in 'FieldName'
2646if (FieldNameRequest || VelTypeRequest) && numel(iview_netcdf)>=1
2647    set(handles.InputFields,'Visible','on')% set the frame InputFields visible
2648    if FieldNameRequest && isfield(SeriesData.FileInfo{iview_netcdf(1)},'ListVarName')
2649        set(handles.FieldName,'Visible','on')
2650        set(handles.Field_text,'Visible','on')
2651        ListVarName=SeriesData.FileInfo{iview_netcdf(1)}.ListVarName;
2652        ind_var=get(handles.FieldName,'Value'); % indices of previously selected variables
2653        for ilist=1:numel(ind_var)
2654            if isempty(find(strcmp(FieldList{ind_var(ilist)},ListVarName), 1))
2655                FieldList={}; % previous choice not consistent with new input field
2656                set(handles.FieldName,'Value',1)
2657                break
2658            end
2659        end
2660        if ~isempty(FieldList)
2661            if isempty(find(strcmp(get(handles.Coord_x,'String'),ListVarName), 1))||...
2662                    isempty(find(strcmp(get(handles.Coord_y,'String'),ListVarName), 1))
2663                FieldList={};
2664                set(handles.Coord_x,'String','')
2665                set(handles.Coord_y,'String','')
2666            end
2667            Coord_z=get(handles.Coord_z,'String');
2668            if ~isempty(Coord_z) && isempty(find(strcmp(Coord_z,ListVarName), 1))
2669                FieldList={};
2670                set(handles.Coord_z,'String','')
2671            end
2672        end
2673    else
2674        set(handles.FieldName,'Visible','off')
2675        set(handles.Field_text,'Visible','off')
2676    end
2677    set(handles_coord,'Visible','on')
2678    if isempty(find(strcmp('add_field...',FieldList), 1))
2679        FieldList=[FieldList;{'add_field...'}];%add 'add_field...' to the menu FieldName if it is not already
2680    end
2681    if FieldNameRequest_1 && numel(iview_netcdf)>=2
2682        set(handles.FieldName_1,'Visible','on')
2683        set(handles.Field_text_1,'Visible','on')
2684        if CheckPivData_1==0        % not civ input made
2685            FieldList_1={'add_field...'};
2686            ListVarName=SeriesData.FileInfo{iview_netcdf(2)}.ListVarName;
2687            ind_var=get(handles.FieldName,'Value'); % indices of previously selected variables
2688            for ilist=1:numel(ind_var)
2689                if isempty(find(strcmp(FieldList{ind_var(ilist)},ListVarName), 1))
2690                    %FieldList_1={}; % previous choice not consistent with new input field
2691                    set(handles.FieldName_1,'Value',1)
2692                    break
2693                end
2694            end
2695            warn_coord=0;
2696            if isempty(find(strcmp(get(handles.Coord_x,'String'),ListVarName), 1))||...
2697                    isempty(find(strcmp(get(handles.Coord_y,'String'),ListVarName), 1))
2698                warn_coord=1;
2699            end
2700            if ~isempty(Coord_z) && isempty(find(strcmp(Coord_z,ListVarName), 1))
2701                FieldList_1={'add_field...'};
2702                warn_coord=1;
2703            end
2704            if warn_coord
2705                msgbox_uvmat('WARNING','coordinate names do not exist in the second netcdf input file')
2706            end
2707
2708            set(handles.FieldName_1,'Visible','on')
2709            set(handles.FieldName_1,'Value',1)
2710            set(handles.FieldName_1,'String',FieldList_1)
2711        end
2712    else
2713        set(handles.FieldName_1,'Visible','off')
2714    end
2715    if isempty(FieldList)
2716        set(handles.Field_text,'Visible','off')
2717        set(handles.FieldName,'Visible','off')
2718    else
2719        set(handles.Field_text,'Visible','on')
2720        set(handles.FieldName,'Visible','on')
2721        set(handles.FieldName,'String',FieldList)
2722    end
2723else
2724    set(handles.InputFields,'Visible','off')
2725end
2726
2727%% Introduce visibility of file overwrite option
2728if isfield(ParamOut,'CheckOverwriteVisible')&& strcmp(ParamOut.CheckOverwriteVisible,'on')
2729    set(handles.CheckOverwrite,'Visible','on')
2730else
2731    set(handles.CheckOverwrite,'Visible','off')
2732end
2733
2734%% Check whether alphabetical sorting of input Subdir is allowed by the Action fct  (for multiples series entries)
2735if isfield(ParamOut,'AllowInputSort')&&isequal(ParamOut.AllowInputSort,'on')&& size(Param.InputTable,1)>1
2736    [~,iview]=sort(Param.InputTable(:,2)); % subdirectories sorted in alphabetical order
2737    set(handles.InputTable,'Data',Param.InputTable(iview,:));
2738    MinIndex_i=get(handles.MinIndex_i,'Data');
2739    MinIndex_j=get(handles.MinIndex_j,'Data');
2740    MaxIndex_i=get(handles.MaxIndex_i,'Data');
2741    MaxIndex_j=get(handles.MaxIndex_j,'Data');
2742    set(handles.MinIndex_i,'Data',MinIndex_i(iview,:));
2743    set(handles.MinIndex_j,'Data',MinIndex_j(iview,:));
2744    set(handles.MaxIndex_i,'Data',MaxIndex_i(iview,:));
2745    set(handles.MaxIndex_j,'Data',MaxIndex_j(iview,:));
2746    TimeTable=get(handles.TimeTable,'Data');
2747    if size(TimeTable,1)<size(Param.InputTable,1)%if the time table is not complete, copy the missing lines from the previous ones
2748        for iline=size(TimeTable,1)+1:size(Param.InputTable,1)
2749            TimeTable(iline,:)=TimeTable(iline-1,:);
2750        end
2751    end
2752    set(handles.TimeTable,'Data',TimeTable(iview,:));% sort the time tables
2753    PairString=get(handles.PairString,'Data');
2754    set(handles.PairString,'Data',PairString(iview,:));
2755end
2756
2757%% Impose the whole input file index range if requested
2758if ~isfield(ParamOut,'WholeIndexRange')
2759    ParamOut.WholeIndexRange='off';
2760end
2761if ~isfield(ParamOut,'IndexRange_j')
2762    ParamOut.IndexRange_j='on';% accept Index_j as input by default
2763end
2764if strcmp(ParamOut.WholeIndexRange,'on')
2765    MinIndex_i=get(handles.MinIndex_i,'Data');
2766    MaxIndex_i=get(handles.MaxIndex_i,'Data');
2767    set(handles.num_first_i,'String',num2str(MinIndex_i(1)))% set first as the min index (for the first line)
2768    set(handles.num_last_i,'String',num2str(MaxIndex_i(1)))% set last as the max index (for the first line)
2769    set(handles.num_incr_i,'String','1')
2770else
2771    first_i=1;last_i=1;
2772    if isfield(Param.IndexRange,'first_i')
2773        first_i=Param.IndexRange.first_i;
2774        last_i=Param.IndexRange.last_i;
2775    end
2776end
2777if strcmp(ParamOut.WholeIndexRange,'on')||strcmp(ParamOut.IndexRange_j,'whole')
2778    MinIndex_j=get(handles.MinIndex_j,'Data');
2779    MaxIndex_j=get(handles.MaxIndex_j,'Data');
2780    set(handles.num_first_j,'String',num2str(MinIndex_j(1)))% set first as the min index (for the first line)
2781    set(handles.num_last_j,'String',num2str(MaxIndex_j(1)))% set last as the max index (for the first line)
2782    set(handles.num_incr_j,'String','1')
2783else  % check index ranges
2784    first_j=1;last_j=1;
2785    if isfield(Param.IndexRange,'first_j')
2786        first_j=Param.IndexRange.first_j;
2787        last_j=Param.IndexRange.last_j;
2788    end
2789    if last_i < first_i || last_j < first_j , msgbox_uvmat('ERROR','last field number must be larger than the first one'),...
2790            set(handles.RUN, 'Enable','On'), set(handles.RUN,'BackgroundColor',[1 0 0]),return,end
2791end
2792num_first_i_Callback(hObject, eventdata, handles)
2793num_first_j_Callback(hObject, eventdata, handles)
2794
2795%% enable or desable j index visibility
2796if strcmp(ParamOut.IndexRange_j,'off')%do not show the j index
2797    enable_j(handles,'off')
2798else% show j index if relevant in the input series
2799    if isfield(SeriesData,'j1_series')
2800    j1_series=SeriesData.j1_series;
2801    for iview=1:size(j1_series,1)
2802        if ~isempty(j1_series{iview})
2803            enable_j(handles,'on')
2804            break
2805        end
2806    end
2807    end
2808end
2809
2810%% NbSlice visibility
2811if isfield(ParamOut,'NbSlice') && (strcmp(ParamOut.NbSlice,'on')||isnumeric(ParamOut.NbSlice))
2812    set(handles.num_NbSlice,'Visible','on')
2813    set(handles.NbSlice_title,'Visible','on')
2814    if isnumeric(ParamOut.NbSlice)
2815        set(handles.num_NbSlice,'String',num2str(ParamOut.NbSlice))
2816    end
2817else
2818    set(handles.num_NbSlice,'Visible','off')
2819    set(handles.NbSlice_title,'Visible','off')
2820end
2821if isfield(ParamOut,'NbSlice') && isnumeric(ParamOut.NbSlice)
2822    set(handles.num_NbSlice,'String',num2str(ParamOut.NbSlice))
2823    set(handles.num_NbSlice,'Enable','off'); % NbSlice set by the activation of the Action function
2824else
2825    set(handles.num_NbSlice,'Enable','on'); % NbSlice can be modified on the GUI series
2826end
2827
2828%% Visibility of FieldTransform menu
2829FieldTransformVisible='off';  %hidden by default
2830if isfield(ParamOut,'FieldTransform')
2831    if ~strcmp(ParamOut.FieldTransform,'off')
2832    FieldTransformVisible='on';
2833    end
2834    if iscell(ParamOut.FieldTransform)
2835        SeriesData.TransformList=ParamOut.FieldTransform;
2836    end
2837    TransformName_Callback([],[], handles)
2838end
2839set(handles.FieldTransform,'Visible',FieldTransformVisible)
2840if isfield(ParamOut,'TransformPath')% record the path of transform function requested for compilation
2841    set(handles.TransformPath,'UserData',ParamOut.TransformPath)
2842else
2843    set(handles.TransformPath,'UserData',[])
2844end
2845
2846%% Visibility of projection object
2847ProjObjectVisible='off';  %hidden by default
2848if isfield(ParamOut,'ProjObject')
2849    ProjObjectVisible=ParamOut.ProjObject;
2850end
2851set(handles.CheckObject,'Visible',ProjObjectVisible)
2852if ~get(handles.CheckObject,'Value')
2853    ProjObjectVisible='off';
2854end
2855set(handles.ProjObjectName,'Visible',ProjObjectVisible)
2856set(handles.DeleteObject,'Visible',ProjObjectVisible)
2857set(handles.ViewObject,'Visible',ProjObjectVisible)
2858set(handles.EditObject,'Visible',ProjObjectVisible)
2859
2860%% Visibility of mask input
2861MaskVisible='off';  %hidden by default
2862if isfield(ParamOut,'Mask')
2863    MaskVisible=ParamOut.Mask;
2864end
2865set(handles.CheckMask,'Visible',MaskVisible);
2866set(handles.MaskTable,'Visible',MaskVisible);
2867
2868%% Setting of expected iteration time
2869if isfield(ParamOut,'CPUTime')
2870    set(handles.num_CPUTime,'String',num2str(ParamOut.CPUTime));
2871end
2872
2873%% definition of the path for the output files
2874InputTable=get(handles.InputTable,'Data');
2875[OutputPath,Device,DeviceExt]=fileparts(InputTable{1,1});
2876[~,Experiment,ExperimentExt]=fileparts(OutputPath);
2877set(handles.Device,'String',[Device DeviceExt])
2878set(handles.Device,'Visible','on')
2879set(handles.Device_title,'Visible','on')
2880set(handles.Experiment,'String',[Experiment ExperimentExt])
2881set(handles.Experiment,'Visible','on')
2882set(handles.Experiment_title,'Visible','on')
2883set(handles.Experiment_title,'Visible','on')
2884set(handles.OutputPath,'Visible','on')
2885set(handles.OutputPathBrowse,'Visible','on')
2886
2887%% definition of the subdirectory containing the output files
2888if  ~(isfield(SeriesData,'ActionName') && strcmp(ActionName,SeriesData.ActionName))
2889    OutputDirExt='.series'; % default
2890    if isfield(ParamOut,'OutputDirExt')&&~isempty(ParamOut.OutputDirExt)
2891        OutputDirExt=ParamOut.OutputDirExt;
2892    end
2893    set(handles.OutputDirExt,'String',OutputDirExt)
2894end
2895OutputDirVisible='off';
2896OutputSubDirMode='auto'; % default
2897SubDirOut='';
2898if isfield(ParamOut,'OutputSubDirMode')
2899    OutputSubDirMode=ParamOut.OutputSubDirMode;
2900end
2901switch OutputSubDirMode
2902    case 'auto' % default
2903        OutputDirVisible='on';
2904        SubDir=InputTable(1:end,2); % set of subdirectories
2905        SubDirOut=SubDir{1};
2906        if numel(SubDir)>1
2907            for ilist=2:numel(SubDir)
2908                SubDirOut=[SubDirOut '-' regexprep(SubDir{ilist},'^/','')];
2909            end
2910        end
2911    case 'one'
2912        OutputDirVisible='on';
2913        SubDirOut=InputTable{1,2}; % use the first subdir name (+OutputDirExt) as output  subdirectory
2914    case 'two'
2915        OutputDirVisible='on';
2916        SubDir=InputTable(1:2,2); % set of subdirectories
2917        SubDirOut=SubDir{1};
2918        if numel(SubDir)>1
2919                SubDirOut=[SubDirOut '-' regexprep(SubDir{2},'^/','')];
2920        end
2921    case 'last'
2922        OutputDirVisible='on';
2923        SubDirOut=InputTable{end,2}; % use the last subdir name (+OutputDirExt) as output  subdirectory
2924end
2925set(handles.OutputSubDir,'String',SubDirOut)
2926set(handles.OutputSubDir,'BackgroundColor',[1 1 1])% set edit box to white color to indicate refreshment
2927set(handles.OutputDirExt,'Visible',OutputDirVisible)
2928set(handles.OutputSubDir,'Visible',OutputDirVisible)
2929SeriesData.ActionName=ActionName; % record ActionName for next use
2930
2931
2932%% visibility of the run mode (local or background or cluster)
2933if strcmp(OutputSubDirMode,'none')
2934    RunModeVisible='off'; % only local mode available if no output file is produced
2935else
2936    RunModeVisible='on';
2937end
2938set(handles.RunMode,'Visible',RunModeVisible)
2939set(handles.ActionExt,'Visible',RunModeVisible)
2940set(handles.RunMode_title,'Visible',RunModeVisible)
2941set(handles.ActionExt_title,'Visible',RunModeVisible)
2942
2943
2944%% Expected nbre of output files
2945if isfield(ParamOut,'OutputFileMode')
2946    StatusData.OutputFileMode=ParamOut.OutputFileMode;
2947    set(handles.status,'UserData',StatusData)
2948end
2949
2950%% definition of an additional parameter set, determined by an ancillary GUI
2951if isfield(ParamOut,'ActionInput')
2952    ParamOut.ActionInput.Program=ActionName; % record the program in ActionInput
2953    SeriesData.ActionInput=ParamOut.ActionInput;
2954else
2955    if isfield(SeriesData,'ActionInput')
2956        SeriesData=rmfield(SeriesData,'ActionInput');
2957    end
2958end
2959set(handles.series,'UserData',SeriesData)
2960set(handles.ActionInput,'BackgroundColor',[1 0 0])
2961
2962
2963%------------------------------------------------------------------------
2964% --- Executes on button press in RefreshField.
2965function RefreshField_Callback(hObject, eventdata, handles)
2966%------------------------------------------------------------------------
2967set(handles.FieldName,'String',{'add_field...'});
2968set(handles.FieldName,'Value',1);
2969FieldName_Callback(hObject, eventdata, handles)
2970
2971
2972%------------------------------------------------------------------------
2973% --- Executes on selection change in FieldName.
2974function FieldName_Callback(hObject, eventdata, handles)
2975%------------------------------------------------------------------------
2976FieldListInit=get(handles.FieldName,'String');
2977field_index=get(handles.FieldName,'Value');
2978field=FieldListInit{field_index(1)};
2979if isequal(field,'add_field...')
2980    FieldListInit(field_index(1))=[];
2981    SeriesData=get(handles.series,'UserData');
2982    for iview=1:numel(SeriesData.FileInfo)
2983    FileType{iview}=SeriesData.FileInfo{iview}.FileType;
2984    end
2985    % input line for which the field choice is relevant
2986    iview=find(ismember(FileType,{'netcdf','civx','civdata'})); % all nc files, icluding civ
2987    hget_field=findobj(allchild(0),'name','get_field');
2988    if ~isempty(hget_field)
2989        delete(hget_field)%delete opened versions of get_field
2990    end
2991    Param=read_GUI(handles.series);
2992    InputTable=Param.InputTable(iview,:);
2993    % check the existence of the first file in the series
2994    first_j=[];last_j=[];MinIndex_j=1;MaxIndex_j=1; % default setting for index j
2995    if isfield(Param.IndexRange,'first_j') % if index j is used
2996        first_j=Param.IndexRange.first_j;
2997        last_j=Param.IndexRange.last_j;
2998        MinIndex_j=Param.IndexRange.MinIndex_j(iview);
2999        MaxIndex_j=Param.IndexRange.MaxIndex_j(iview);
3000    end
3001    PairString='';
3002    if isfield(Param.IndexRange,'PairString'); PairString=Param.IndexRange.PairString{iview}; end
3003    [i1,i2,j1,j2] = get_file_index(Param.IndexRange.first_i,first_j,PairString);
3004    LineIndex=iview(1);
3005    if numel(iview)>1
3006        answer=msgbox_uvmat('INPUT_TXT',['select the line of the input table:' num2str(iview)] ,num2str(iview(1)));
3007        LineIndex=str2num(answer);
3008    end
3009    FirstFileName=fullfile_uvmat(InputTable{LineIndex,1},InputTable{LineIndex,2},InputTable{LineIndex,3},...
3010        InputTable{LineIndex,5},InputTable{LineIndex,4},i1,i2,j1,j2);
3011    if exist(FirstFileName,'file') || ~isempty(regexp(InputTable{LineIndex,1},'^http'))
3012        ParamIn.Title='get_field: pick input variables and coordinates for series processing';
3013        ParamIn.SeriesInput=1;
3014        GetFieldData=get_field(FirstFileName,ParamIn);
3015        FieldList={};
3016        if isfield(GetFieldData,'FieldOption')% if a field has been selected
3017        switch GetFieldData.FieldOption
3018            case 'vectors'
3019                UName=GetFieldData.PanelVectors.vector_x;
3020                VName=GetFieldData.PanelVectors.vector_y;
3021                YName={GetFieldData.Coordinates.Coord_y};
3022                FieldList={['vec(' UName ',' VName ')'];...
3023                    ['norm(' UName ',' VName ')'];...
3024                    UName;VName};
3025                set(handles.VelType,'Visible','off')
3026            case {'scalar'}
3027                FieldList=GetFieldData.PanelScalar.scalar;
3028                YName={GetFieldData.Coordinates.Coord_y};
3029                if ischar(FieldList)
3030                    FieldList={FieldList};
3031                end
3032                set(handles.VelType,'Visible','off')
3033            case 'civdata...'
3034                FieldList=[set_field_list('U','V') ;{'C'}];
3035                set(handles.FieldName,'Value',1) % set menu to 'velocity
3036                XName='X';
3037                YName='y';
3038                set(handles.VelType,'Visible','on')
3039        end
3040        set(handles.FieldName,'Value',1)
3041        set(handles.FieldName,'String',[FieldListInit; FieldList; {'add_field...'}]);
3042        if ~strcmp(GetFieldData.FieldOption,'civdata...')
3043           if ~isempty(regexp(FieldList{1},'^vec', 'once'))
3044                set(handles.FieldName,'Value',1)
3045           else
3046                set(handles.FieldName,'Value',1:numel(FieldList))%select all input fields by default
3047           end
3048            XName=GetFieldData.Coordinates.Coord_x;
3049            YName=GetFieldData.Coordinates.Coord_y;
3050            TimeNameStr=GetFieldData.Time.SwitchVarIndexTime;
3051            % get the time info
3052            TimeTable=get(handles.TimeTable,'Data');
3053            switch TimeNameStr
3054                case 'file index'
3055                    TimeName='';
3056                case 'attribute'
3057                    TimeName=['att:' GetFieldData.Time.TimeName];
3058                    % update the time table
3059                    TimeTable{LineIndex,2}=get_time(Param.IndexRange.MinIndex_i(LineIndex),MinIndex_j,PairString,InputTable,SeriesData.FileInfo{LineIndex},GetFieldData.Time.TimeName);  % Min time
3060                    TimeTable{LineIndex,3}=get_time(Param.IndexRange.first_i,first_j,PairString,InputTable,SeriesData.FileInfo{LineIndex},GetFieldData.Time.TimeName);  % first time
3061                    TimeTable{LineIndex,4}=get_time(Param.IndexRange.last_i,last_j,PairString,InputTable,SeriesData.FileInfo{LineIndex},GetFieldData.Time.TimeName);  % last time
3062                    TimeTable{LineIndex,5}=get_time(Param.IndexRange.MaxIndex_i(LineIndex),MaxIndex_j,PairString,InputTable,SeriesData.FileInfo{LineIndex},GetFieldData.Time.TimeName);  % Max time
3063                case 'variable'
3064                    set(handles.TimeName,'String',['var:' GetFieldData.Time.TimeName])
3065                    set(handles.NomType,'String','*')
3066                    set(handles.RootFile,'String',[get(handles.RootFile,'String') get(handles.FileIndex,'String')])% A VERIFIER !!!!!!
3067                    set(handles.FileIndex,'String','')
3068                    ParamIn.TimeVarName=GetFieldData.Time.TimeName;
3069                case 'matrix_index'
3070                    TimeName=['dim:' GetFieldData.Time.TimeName];
3071                    set(handles.NomType,'String','*')
3072                    set(handles.RootFile,'String',[get(handles.RootFile,'String') get(handles.FileIndex,'String')])
3073                    set(handles.FileIndex,'String','')
3074                    ParamIn.TimeDimName=GetFieldData.Time.TimeName;
3075            end
3076            TimeTable{LineIndex,1}=TimeName;
3077            set(handles.TimeTable,'Data',TimeTable);
3078        end
3079        set(handles.Coord_x,'String',XName)
3080        set(handles.Coord_y,'String',YName)
3081        set(handles.Coord_x,'Visible','on')
3082        set(handles.Coord_y,'Visible','on')
3083        end
3084    else
3085        msgbox_uvmat('ERROR',[FirstFileName ' does not exist'])
3086    end
3087end
3088
3089
3090function [TimeValue,DtValue]=get_time(ref_i,ref_j,PairString,InputTable,FileInfo,TimeName,DtName)
3091[i1,i2,j1,j2] = get_file_index(ref_i,ref_j,PairString);
3092FileName=fullfile_uvmat(InputTable{1},InputTable{2},InputTable{3},InputTable{5},InputTable{4},i1,i2,j1,j2);
3093%Data=nc2struct(FileName,[]);
3094TimeValue=[];
3095DtValue=[];
3096switch FileInfo.FileType
3097    case 'civdata'
3098    Data=nc2struct(FileName,[]);
3099    if ismember(TimeName,{'civ1','filter1'})
3100        if isfield(Data,'Civ1_Time')
3101        TimeValue=Data.Civ1_Time;
3102        end
3103        if isfield(Data,'Civ1_Dt')
3104        DtValue=Data.Civ1_Dt;
3105        end
3106    else
3107        if isfield(Data,'Civ2_Time')
3108        TimeValue=Data.Civ2_Time;
3109        end
3110        if isfield(Data,'Civ2_Dt')
3111        DtValue=Data.Civ2_Dt;
3112        end
3113    end
3114    case 'pivdata_fluidimage'
3115      TimeValue=ref_i;%default
3116      DtValue=1;%default
3117    case 'netcdf'
3118        Data=nc2struct(FileName,[]);
3119    if ~isempty(TimeName)&& isfield(Data,TimeName)
3120        TimeValue=Data.(TimeName);
3121    end
3122    if exist('DtName','var') && isfield(Data,DtName)
3123        DtValue=Data.(DtName);
3124    end
3125end
3126
3127%------------------------------------------------------------------------
3128% --- Executes on selection change in FieldName_1.
3129function FieldName_1_Callback(hObject, eventdata, handles)
3130%------------------------------------------------------------------------
3131field_str=get(handles.FieldName_1,'String');
3132field_index=get(handles.FieldName_1,'Value');
3133field=field_str{field_index(1)};
3134if strcmp(field,'add_field...')
3135    %iview=find(ismember(SeriesData.FileType,{'netcdf','civx','civdata'})); % all nc files, icluding civ
3136    hget_field=findobj(allchild(0),'name','get_field');
3137    if ~isempty(hget_field)
3138        delete(hget_field)%delete opened versions of get_field
3139    end
3140    Param=read_GUI(handles.series);
3141    %InputTable=Param.InputTable(2,:);
3142    % check the existence of the first file in the series
3143    first_j=[];
3144    if isfield(Param.IndexRange,'first_j'); first_j=Param.IndexRange.first_j; end
3145    if isfield(Param.IndexRange,'last_j'); last_j=Param.IndexRange.last_j; end
3146    PairString='';
3147    if isfield(Param.IndexRange,'PairString'); PairString=Param.IndexRange.PairString; end
3148    [i1,i2,j1,j2] = get_file_index(Param.IndexRange.first_i,first_j,PairString);
3149    FirstFileName=fullfile_uvmat(Param.InputTable{2,1},Param.InputTable{2,2},Param.InputTable{2,3},...
3150        Param.InputTable{2,5},Param.InputTable{2,4},i1,i2,j1,j2);
3151    if exist(FirstFileName,'file')
3152        ParamIn.SeriesInput=1;
3153        GetFieldData=get_field(FirstFileName,ParamIn);
3154        FieldList={};
3155        switch GetFieldData.FieldOption
3156            case 'vectors'
3157                UName=GetFieldData.PanelVectors.vector_x;
3158                VName=GetFieldData.PanelVectors.vector_y;
3159                FieldList={['vec(' UName ',' VName ')'];...
3160                    ['norm(' UName ',' VName ')'];...
3161                    UName;VName};
3162            case {'scalar','pick variables'}
3163                FieldList=GetFieldData.PanelScalar.scalar;
3164                if ischar(FieldList)
3165                    FieldList={FieldList};
3166                end
3167            case '1D plot'
3168
3169            case 'civdata...'
3170                FieldList=set_field_list('U','V','C');
3171                set(handles.FieldName,'Value',2) % set menu to 'velocity
3172        end
3173        set(handles.FieldName_1,'Value',1)
3174        set(handles.FieldName_1,'String',[FieldList; {'add_field...'}]);
3175    end
3176end
3177
3178
3179%%%%%%%%%%%%%
3180function [ind_remove]=find_pairs(dirpair,ind_i,last_i)
3181indsel=ind_i;
3182indiff=diff(ind_i); % test index increment to detect multiplets (several pairs with the same index ind_i) and holes in the series
3183indiff=[1 indiff last_i-ind_i(end)+1]; % for testing gaps with the imposed bounds
3184if ~isempty(indiff)
3185    indiff2=diff(indiff);
3186    indiffp=[indiff2 1];
3187    indiffm=[1 indiff2];
3188    ind_multi_m=find((indiff==0)&(indiffm<0))-1; % indices of first members of multiplets
3189    ind_multi_p=find((indiff==0)&(indiffp>0)); % indices of last members of multiplets
3190    %for each multiplet, select the most recent file
3191    ind_remove=[];
3192    for i=1:length(ind_multi_m)
3193        ind_pairs=ind_multi_m(i):ind_multi_p(i);
3194        for imulti=1:length(ind_pairs)
3195            datepair(imulti)=datenum(dirpair(ind_pairs(imulti)).date); % dates of creation
3196        end
3197        [~,indsort2]=sort(datepair); % sort the multiplet by creation date
3198        ind_s=indsort2(1:end-1); %
3199        ind_remove=[ind_remove ind_pairs(ind_s)]; % remove these indices, leave the last one
3200    end
3201end
3202
3203%------------------------------------------------------------------------
3204% --- determine the list of index pairstring of processing file
3205function [num_i1,num_i2,num_j1,num_j2,num_i_out,num_j_out]=find_file_indices(num_i,num_j,ind_shift,NomType,mode)
3206%------------------------------------------------------------------------
3207num_i1=num_i; % set of first image numbers by default
3208num_i2=num_i;
3209num_j1=num_j;
3210num_j2=num_j;
3211num_i_out=num_i;
3212num_j_out=num_j;
3213% if isequal (NomType,'_1-2_1') || isequal (NomType,'_1-2')
3214if isequal(mode,'series(Di)')
3215    num_i1_line=num_i+ind_shift(3); % set of first image numbers
3216    num_i2_line=num_i+ind_shift(4);
3217    % adjust the first and last field number
3218        indsel=find(num_i1_line >= 1);
3219    num_i_out=num_i(indsel);
3220    num_i1_line=num_i1_line(indsel);
3221    num_i2_line=num_i2_line(indsel);
3222    num_j1=meshgrid(num_j,ones(size(num_i1_line)));
3223    num_j2=meshgrid(num_j,ones(size(num_i1_line)));
3224    [~,num_i1]=meshgrid(num_j,num_i1_line);
3225    [~,num_i2]=meshgrid(num_j,num_i2_line);
3226elseif isequal (mode,'series(Dj)')||isequal (mode,'bursts')
3227    if isequal(mode,'bursts') %case of bursts (png_old or png_2D)
3228        num_j1=ind_shift(1)*ones(size(num_i));
3229        num_j2=ind_shift(2)*ones(size(num_i));
3230    else
3231        num_j1_col=num_j+ind_shift(1); % set of first image numbers
3232        num_j2_col=num_j+ind_shift(2);
3233        % adjust the first field number
3234        indsel=find((num_j1_col >= 1));
3235        num_j_out=num_j(indsel);
3236        num_j1_col=num_j1_col(indsel);
3237        num_j2_col=num_j2_col(indsel);
3238        [num_i1,num_j1]=meshgrid(num_i,num_j1_col);
3239        [num_i2,num_j2]=meshgrid(num_i,num_j2_col);
3240    end
3241end
3242
3243%------------------------------------------------------------------------
3244% --- Executes on button press in CheckObject.
3245function CheckObject_Callback(hObject, eventdata, handles)
3246%------------------------------------------------------------------------
3247hset_object=findobj(allchild(0),'tag','set_object'); % find the set_object interface handle
3248if get(handles.CheckObject,'Value')
3249    SeriesData=get(handles.series,'UserData');
3250    if isfield(SeriesData,'ProjObject') && ~isempty(SeriesData.ProjObject)% a projection object is already loaded in the GUI series
3251        set(handles.ViewObject,'Value',1)
3252        ViewObject_Callback(hObject, eventdata, handles)
3253    else
3254        if ishandle(hset_object)% a projection object is already displayed in a GUI set_object
3255            uistack(hset_object,'top')% show the GUI set_object if opened
3256        else
3257            %get the object file
3258            InputTable=get(handles.InputTable,'Data');
3259            defaultname=InputTable{1,1};
3260            if isempty(defaultname)
3261                defaultname={''};
3262            end
3263            fileinput=uigetfile_uvmat('pick a xml object file (or use uvmat to create it)',defaultname,'.xml');
3264            if isempty(fileinput)% exit if no object file is selected
3265                set(handles.CheckObject,'Value',0)
3266                return
3267            end
3268            %read the file
3269            data=xml2struct(fileinput);
3270            if ~isfield(data,'Type')
3271                msgbox_uvmat('ERROR',[fileinput ' is not an object xml file'])
3272                set(handles.CheckObject,'Value',0)
3273                return
3274            end
3275            if ~isfield(data,'ProjMode')
3276                data.ProjMode='none';
3277            end
3278            hset_object=set_object(data); % call the set_object interface
3279            set(hset_object,'Name','set_object_series')% name to distinguish from set_object used with uvmat
3280        end
3281        ProjObject=read_GUI(hset_object);
3282        set(handles.ProjObjectName,'String',ProjObject.Name); % display the object name
3283        SeriesData=get(handles.series,'UserData');
3284        SeriesData.ProjObject=ProjObject;
3285        set(handles.series,'UserData',SeriesData);
3286    end
3287    set(handles.EditObject,'Visible','on');
3288    set(handles.DeleteObject,'Visible','on');
3289    set(handles.ViewObject,'Visible','on');
3290    set(handles.ProjObjectName,'Visible','on');
3291else
3292    set(handles.EditObject,'Visible','off');
3293    set(handles.DeleteObject,'Visible','off');
3294    set(handles.ViewObject,'Visible','off');
3295    if ~ishandle(hset_object)
3296        set(handles.ViewObject,'Value',0);
3297    end
3298    set(handles.ProjObjectName,'Visible','off');
3299end
3300
3301%------------------------------------------------------------------------
3302% --- Executes on button press in ViewObject.
3303%------------------------------------------------------------------------
3304function ViewObject_Callback(hObject, eventdata, handles)
3305
3306UserData=get(handles.series,'UserData');
3307hset_object=findobj(allchild(0),'Tag','set_object');
3308if ~isempty(hset_object)
3309    delete(hset_object)% refresh set_object if already opened
3310end
3311hset_object=set_object(UserData.ProjObject);
3312set(hset_object,'Name','view_object_series')
3313
3314
3315%------------------------------------------------------------------------
3316% --- Executes on button press in EditObject.
3317function EditObject_Callback(hObject, eventdata, handles)
3318%------------------------------------------------------------------------
3319if get(handles.EditObject,'Value')
3320    set(handles.ViewObject,'Value',0)
3321    UserData=get(handles.series,'UserData');
3322    if isfield(UserData,'ProjObject')
3323    hset_object=set_object(UserData.ProjObject);
3324    set(hset_object,'Name','edit_object_series')
3325    set(get(hset_object,'Children'),'Enable','on')
3326    else
3327        msgbox_uvmat('ERROR','no projection object available');
3328    end
3329else
3330    hset_object=findobj(allchild(0),'Tag','set_object');
3331    if ~isempty(hset_object)
3332        set(get(hset_object,'Children'),'Enable','off')
3333    end
3334end
3335
3336%------------------------------------------------------------------------
3337% --- Executes on button press in DeleteObject.
3338function DeleteObject_Callback(hObject, eventdata, handles)
3339%------------------------------------------------------------------------
3340SeriesData=get(handles.series,'UserData');
3341SeriesData.ProjObject=[];
3342set(handles.series,'UserData',SeriesData)
3343set(handles.ProjObjectName,'String','')
3344set(handles.ProjObjectName,'Visible','off')
3345set(handles.CheckObject,'Value',0)
3346set(handles.ViewObject,'Visible','off')
3347set(handles.EditObject,'Visible','off')
3348hset_object=findobj(allchild(0),'name','set_object_series');
3349if ~isempty(hset_object)
3350    delete(hset_object)
3351end
3352set(handles.DeleteObject,'Visible','off')
3353
3354%------------------------------------------------------------------------
3355% --- Executed when CheckMask is activated
3356%------------------------------------------------------------------------
3357function CheckMask_Callback(hObject, eventdata, handles)
3358
3359
3360if get(handles.CheckMask,'Value')
3361    set(handles.DeleteMask,'Visible','on')
3362    Param=read_GUI_series(handles); % displayed parameters
3363    NbView=size(Param.InputTable,1);
3364    MaskTable=cell(NbView,2);
3365   
3366    %RootPath=Param.InputTable{1,1};
3367    first_j=[];% note that the function will propose to cover the whole range of indices
3368    if isfield(Param.IndexRange,'first_j'); first_j=Param.IndexRange.first_j; end
3369   %last_j=[];
3370    if isfield(Param.IndexRange,'last_j'); last_j=Param.IndexRange.last_j; end
3371    PairString='';
3372    if isfield(Param.IndexRange,'PairString'); PairString=Param.IndexRange.PairString; end
3373    [i1,i2,j1,j2] = get_file_index(Param.IndexRange.first_i,first_j,PairString);
3374    %checkmask=zeros(NbView,1);
3375    for iview=1:NbView
3376        checkmask=0;
3377        FirstFileName=fullfile_uvmat(Param.InputTable{iview,1},Param.InputTable{iview,2},Param.InputTable{iview,3},...
3378            Param.InputTable{iview,5},Param.InputTable{iview,4},i1,i2,j1,j2);
3379       
3380       % [FileInfo,VideoObject]=get_file_info(FirstFileName);
3381       
3382       
3383%         Data=nc2struct(FirstFileName);
3384        if isfield(Data,'Civ2_Mask')
3385            if exist(Data.Civ2_Mask,'file')
3386            MaskTable{iview,1}=Data.Civ2_Mask;
3387            checkmask=1;
3388            end
3389        end
3390        if ~checkmask
3391            MaskTable{iview,1}=uigetfile_uvmat('select a mask file:',Param.InputTable{iview,1},'image');
3392        end
3393    end
3394    for iview=1:NbView
3395        [Path,Name]=fileparts(MaskTable{iview,1});
3396        Name=regexprep(Name,'_\d+','');
3397        maskfiles=dir(fullfile(Path,[Name '_*.png']));%look for mask files       
3398        if ~isempty(maskfiles)
3399            for ilist=1:numel(maskfiles)
3400                r=regexp(maskfiles(ilist).name,'_(?<num1>\d+)','names');%look for burst pairs
3401                index(ilist)=str2double(r.num1);
3402            end
3403            MaskTable{iview,2}=max(index);
3404        end
3405    end
3406    set(handles.MaskTable,'Data',MaskTable)
3407    set(handles.CheckMask,'Value',0)
3408end
3409%       
3410% if ~isempty(NewMask)
3411%     if isempty(MaskList)
3412%         MaskList={NewMask};
3413%     else
3414%     MaskList={MaskList;NewMask};
3415%     end
3416%     set(handles.Mask,'String',MaskList)
3417% end
3418% end
3419% %     MaskTable=cell(nbview,1); % default
3420% %     ListMask=cell(nbview,1); % default
3421% %     MaskData=get(handles.MaskTable,'Data');
3422% %     MaskData(size(MaskData,1):nbview,1)=cell(size(MaskData,1):nbview,1); % complement if undefined lines
3423%     for iview=1:nbview
3424%         ListMask{iview,1}=num2str(iview);
3425%         RootPath=InputTable{iview,1};
3426%         if ~isempty(RootPath)
3427%             if isempty(MaskData{iview})
3428%                 SubDir=InputTable{iview,2};
3429%                 MaskPath=fullfile(RootPath,[regexprep(SubDir,'\..*','') '.mask']); % take the root part of SubDir, before the first dot '.'
3430%                 if exist(MaskPath,'dir')
3431%                     ListStruct=dir(MaskPath); % look for a mask file
3432%                     ListCells=struct2cell(ListStruct); % transform dir struct to a cell arrray
3433%                     check_dir=cell2mat(ListCells(4,:)); % =1 for directories, =0 for files
3434%                     ListFiles=ListCells(1,:); % list of file and dri names
3435%                     ListFiles=ListFiles(~check_dir); % list of file names (excluding dir)
3436%                     mdetect=0;
3437%                     if ~isempty(ListFiles)
3438%                         for ifile=1:numel(ListFiles)
3439%                             [tild,tild,MaskFile{ifile},i1_series,i2_series,j1_series,j2_series,MaskNomType,MaskFileType]=find_file_series(MaskPath,ListFiles{ifile},0);
3440%                             if strcmp(MaskFileType,'image') && isempty(i2_series) && isempty(j2_series)
3441%                                 mdetect=1;
3442%                                 MaskName=ListFiles{ifile};
3443%                             end
3444%                             if ~strcmp(MaskFile{ifile},MaskFile{1})
3445%                                 mdetect=0; % cancel detection test in case of multiple masks, use the brower for selection
3446%                                 break
3447%                             end
3448%                         end
3449%                     end
3450%                     if mdetect==1
3451%                         MaskName=fullfile(MaskPath,'mask_1.png');
3452%                     else
3453%                         MaskName=uigetfile_uvmat('select a mask file:',MaskPath,'image');
3454%                     end
3455%                 else
3456%                     MaskName=uigetfile_uvmat('select a mask file:',RootPath,'image');
3457%                 end
3458%                 MaskTable{iview,1}=MaskName ;
3459%                 ListMask{iview,1}=num2str(iview);
3460%             end
3461%         end
3462%     end
3463%     set(handles.MaskTable,'Data',MaskTable)
3464%     set(handles.MaskTable,'Visible','on')
3465%     set(handles.MaskBrowse,'Visible','on')
3466%     set(handles.ListMask,'Visible','on')
3467%     set(handles.ListMask,'String',ListMask)
3468%     set(handles.ListMask,'Value',1)
3469
3470
3471
3472%------------------------------------------------------------------------
3473% --- Executes when selected cell(s) is changed in MaskTable.
3474%------------------------------------------------------------------------
3475function MaskTable_CellSelectionCallback(hObject, eventdata, handles)
3476
3477if numel(eventdata.Indices)>=1
3478set(handles.ListMask,'Value',eventdata.Indices(1))
3479end
3480
3481%-------------------------------------------------------------------
3482function MenuHelp_Callback(hObject, eventdata, handles)
3483%-------------------------------------------------------------------
3484
3485
3486% path_to_uvmat=which ('uvmat'); % check the path of uvmat
3487% pathelp=fileparts(path_to_uvmat);
3488% helpfile=fullfile(pathelp,'uvmat_doc','uvmat_doc.html');
3489% if isempty(dir(helpfile)), msgbox_uvmat('ERROR','Please put the help file uvmat_doc.html in the sub-directory /uvmat_doc of the UVMAT package')
3490% else
3491%     addpath (fullfile(pathelp,'uvmat_doc'))
3492%     web([helpfile '#series'])
3493% end
3494
3495%-------------------------------------------------------------------
3496% --- Executes on selection change in TransformName.
3497function TransformName_Callback(hObject, eventdata, handles)
3498%----------------------------------------------------------------------
3499TransformList=get(handles.TransformName,'String');
3500TransformIndex=get(handles.TransformName,'Value');
3501TransformName=TransformList{TransformIndex};
3502TransformPathList=get(handles.TransformName,'UserData');
3503nb_builtin_transform=4;
3504
3505%% browse transform functions with the input menu option more...
3506if isequal(TransformName,'more...')% browse transform functions
3507    FileName=uigetfile_uvmat('Pick a transform function',get(handles.TransformPath,'String'),'.m');
3508    if isempty(FileName)
3509        return     %browser closed without choice
3510    end
3511    [TransformPath,TransformName,TransformExt]=fileparts(FileName); % removes extension .m
3512    if ~strcmp(TransformExt,'.m')
3513        msgbox_uvmat('ERROR','a Matlab function .m must be introduced');
3514        return
3515    end
3516     % insert the choice in the menu
3517    TransformIndex=find(strcmp(TransformName,TransformList),1); % look for the selected function in the menu Action
3518    if isempty(TransformIndex)%the input string does not exist in the menu
3519        TransformIndex= length(TransformList);
3520        TransformList=[TransformList(1:end-1);{TransformName};TransformList(end)]; % the selected function is appended in the menu, before the last item 'more...'
3521        set(handles.TransformName,'String',TransformList)
3522        TransformPathList=[TransformPathList;{TransformPath}];
3523    else% the input function already exist, we update its path (possibly new)
3524        TransformPathList{TransformIndex}=TransformPath; %
3525        set(handles.TransformName,'Value',TransformIndex)
3526    end
3527   % save the new menu in the personal file 'uvmat_perso.mat'
3528   dir_perso=prefdir; % personal Matalb directory
3529   profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
3530   if exist(profil_perso,'file')
3531       for ilist=nb_builtin_transform+1:numel(TransformPathList)
3532           TransformListUser{ilist-nb_builtin_transform}=TransformList{ilist};
3533           TransformPathListUser{ilist-nb_builtin_transform}=TransformPathList{ilist};
3534       end
3535       TransformPathListUser=TransformPathListUser';
3536       TransformListUser=TransformListUser';
3537       save (profil_perso,'TransformPathListUser','TransformListUser','-append'); % store the root name for future opening of uvmat
3538   end
3539end
3540
3541%% display the current function path
3542set(handles.TransformPath,'String',TransformPathList{TransformIndex}); % show the path to the senlected function
3543set(handles.TransformName,'UserData',TransformPathList);
3544
3545%% create the function handle of the selected fct
3546if ~isempty(TransformName)
3547    if ~exist(TransformPathList{TransformIndex},'dir')
3548        msgbox_uvmat('ERROR',['The prescribed transform function path ' TransformPathList{TransformIndex} ' does not exist']);
3549        return
3550    end
3551    current_dir=pwd; % current working dir
3552    cd(TransformPathList{TransformIndex})
3553    transform_handle=str2func(TransformName);
3554    cd(current_dir)
3555    Field.Action.RUN=0;% indicate that the transform fct is called only to get input param
3556    SeriesData=get(handles.series,'UserData');
3557    ParamIn=[];
3558    if isfield(SeriesData,'TransformInput')
3559        ParamIn.TransformInput=SeriesData.TransformInput;
3560    end
3561    DataOut=feval(transform_handle,Field,ParamIn);% execute the transform fct to get its input parameters
3562    if isfield(DataOut,'TransformInput')%  used to add transform parameters at selection of the transform fct
3563        SeriesData.TransformInput=DataOut.TransformInput;
3564        set(handles.series,'UserData',SeriesData)
3565    end
3566end
3567
3568%------------------------------------------------------------------------
3569% --- fct activated by the upper bar menu ExportConfig
3570%------------------------------------------------------------------------
3571function MenuDisplayConfig_Callback(hObject, eventdata, handles)
3572
3573global Param
3574Param=read_GUI_series(handles);
3575evalin('base','global Param')%make CurData global in the workspace
3576display('current series config :')
3577evalin('base','Param') %display CurData in the workspace
3578commandwindow; % brings the Matlab command window to the front
3579
3580%------------------------------------------------------------------------
3581% --- fct activated by the upper bar menu InportConfig: import
3582%     menu settings from an xml file (stored in /0_XML for each run)
3583%------------------------------------------------------------------------
3584function MenuImportConfig_Callback(hObject, eventdata, handles)
3585
3586%% use a browser to choose the xml file containing the processing config
3587InputTable=get(handles.InputTable,'Data');
3588oldfile=InputTable{1,1}; % current path in InputTable
3589if isempty(oldfile)
3590    % use a file name stored in prefdir
3591    dir_perso=prefdir;
3592    profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
3593    if exist(profil_perso,'file')
3594        h=load (profil_perso);
3595        if isfield(h,'RootPath') && ischar(h.RootPath)
3596            oldfile=h.RootPath;
3597        end
3598    end
3599end
3600filexml=uigetfile_uvmat('pick a xml parameter file',oldfile,'.xml'); % get the xml file containing processing parameters
3601if isempty(filexml), return, end % quit function if an xml file has not been opened
3602
3603%% fill the GUI series with the content of the xml file
3604[Param,RootTag,errormsg]=xml2struct(filexml); % read the input xml file as a Matlab structure
3605if ~isempty(errormsg)
3606    msgbox_uvmat('ERROR',errormsg);
3607    return
3608end
3609% ask to stop current Action if button RUN is in action (another process is already running)
3610if isequal(get(handles.RUN,'Value'),1)
3611    answer= msgbox_uvmat('INPUT_Y-N','stop current Action process?');
3612    if strcmp(answer,'Yes')
3613        STOP_Callback(hObject, eventdata, handles)
3614    else
3615        return
3616    end
3617end
3618Param.Action.RUN=0; % desactivate the input RUN=1
3619
3620fill_GUI(Param,handles.series)% fill the elements of the GUI series with the input parameters
3621SeriesData=get(handles.series,'UserData');
3622if isfield(Param,'InputFields')
3623    ListField=Param.InputFields.FieldName;
3624    if ischar(ListField),ListField={ListField}; end
3625    set(handles.FieldName,'String',[ListField;{'add_field...'}])
3626     set(handles.FieldName,'Value',1:numel(ListField))
3627     set(handles.FieldName,'Visible','on')
3628end
3629if isfield(Param,'ActionInput')%  introduce  parameters specific to an Action fct, for instance PIV parameters
3630%     set(handles.ActionInput,'Visible','on')
3631%     set(handles.ActionInput,'Value',0)
3632    Param.ActionInput.ConfigSource=filexml; % record the source of config for future info
3633    SeriesData.ActionInput=Param.ActionInput;
3634end
3635if isfield(Param,'TransformInput')%  introduce  parameters specific to a transform fct
3636    SeriesData.TransformInput=Param.TransformInput;
3637end
3638if isfield(Param,'ProjObject') %introduce projection object if relevant
3639    SeriesData.ProjObject=Param.ProjObject;
3640end
3641set(handles.series,'UserData',SeriesData)
3642if isfield(Param,'CheckObject') && isequal(Param.CheckObject,1)
3643    set(handles.ProjObjectName,'String',Param.ProjObject.Name)
3644    set(handles.ViewObject,'Visible','on')
3645    set(handles.EditObject,'Visible','on')
3646    set(handles.DeleteObject,'Visible','on')
3647else
3648    set(handles.ProjObjectName,'String','')
3649    set(handles.ProjObjectName,'Visible','off')
3650    set(handles.ViewObject,'Visible','off')
3651    set(handles.EditObject,'Visible','off')
3652    set(handles.DeleteObject,'Visible','off')
3653end
3654set(handles.REFRESH,'BackgroundColor',[1 0 1]); % paint REFRESH button in magenta to indicate that it should be activated
3655
3656
3657%------------------------------------------------------------------------
3658% --- Executes when the GUI series is resized.
3659%------------------------------------------------------------------------
3660function series_ResizeFcn(hObject, eventdata, handles)
3661
3662%% input table
3663set(handles.InputTable,'Unit','pixel')
3664Pos=get(handles.InputTable,'Position');
3665set(handles.InputTable,'Unit','normalized')
3666ColumnWidth=round([0.5 0.14 0.14 0.14 0.08]*(Pos(3)-52));
3667ColumnWidth=num2cell(ColumnWidth);
3668set(handles.InputTable,'ColumnWidth',ColumnWidth)
3669
3670%% MaskTable
3671set(handles.MaskTable,'Unit','pixel')
3672Pos=get(handles.MaskTable,'Position');
3673set(handles.MaskTable,'Unit','normalized')
3674ColumnWidth=round([0.9 0.1]*(Pos(3)-52));
3675ColumnWidth=num2cell(ColumnWidth);
3676set(handles.MaskTable,'ColumnWidth',ColumnWidth)
3677
3678%% MinIndex_j and MaxIndex_i
3679unit=get(handles.MinIndex_i,'Unit');
3680set(handles.MinIndex_i,'Unit','pixel')
3681Pos=get(handles.MinIndex_i,'Position');
3682set(handles.MinIndex_i,'Unit',unit)
3683set(handles.MinIndex_i,'ColumnWidth',{Pos(3)-18})
3684set(handles.MaxIndex_i,'ColumnWidth',{Pos(3)-18})
3685set(handles.MinIndex_j,'ColumnWidth',{Pos(3)-18})
3686set(handles.MaxIndex_j,'ColumnWidth',{Pos(3)-18})
3687
3688%% TimeTable
3689set(handles.TimeTable,'Unit','pixel')
3690Pos=get(handles.TimeTable,'Position');
3691set(handles.TimeTable,'Unit','normalized')
3692% ColumnWidth=get(handles.TimeTable,'ColumnWidth');
3693ColumnWidth=num2cell(floor([0.2 0.2 0.2 0.2 0.2]*(Pos(3)-20)));
3694set(handles.TimeTable,'ColumnWidth',ColumnWidth)
3695
3696
3697%% PairString
3698set(handles.PairString,'Unit','pixel')
3699Pos=get(handles.PairString,'Position');
3700set(handles.PairString,'Unit','normalized')
3701set(handles.PairString,'ColumnWidth',{Pos(3)-5})
3702
3703%% MaskTable
3704% % set(handles.MaskTable,'Unit','pixel')
3705% % Pos=get(handles.MaskTable,'Position');
3706% % set(handles.MaskTable,'Unit','normalized')
3707% % set(handles.MaskTable,'ColumnWidth',{Pos(3)-5})
3708
3709%------------------------------------------------------------------------
3710% --- Executes on button press in status.
3711%------------------------------------------------------------------------
3712function status_Callback(hObject, eventdata, handles)
3713
3714if get(handles.status,'Value')
3715    set(handles.status,'BackgroundColor',[1 1 0])
3716    drawnow
3717    Param=read_GUI(handles.series);
3718    RootPath=fullfile(Param.OutputPath,Param.Experiment,Param.Device);
3719    if ~isfield(Param,'OutputSubDir')
3720        msgbox_uvmat('ERROR','no standard sub-directory definition for output files, use a browser to check the output')
3721        set(handles.status,'BackgroundColor',[0 1 0])
3722        return
3723    end
3724    OutputSubDir=[Param.OutputSubDir Param.OutputDirExt]; % subdirectory for output files
3725    OutputDir=fullfile(RootPath,OutputSubDir);
3726    if exist(OutputDir,'dir')
3727        uigetfile_uvmat('status_display',OutputDir)
3728    else
3729        msgbox_uvmat('ERROR','output folder not created yet: calculation did not start')
3730        set(handles.status,'BackgroundColor',[0 1 0])
3731    end
3732else
3733    %% delete current display fig if selection is off
3734    set(handles.status,'BackgroundColor',[0 1 0])
3735    hfig=findobj(allchild(0),'name','status_display');
3736    if ~isempty(hfig)
3737        delete(hfig)
3738    end
3739    return
3740end
3741
3742
3743%------------------------------------------------------------------------
3744% launched by selecting a file on the list
3745%------------------------------------------------------------------------
3746function view_file(hObject, eventdata)
3747
3748list=get(hObject,'String');
3749index=get(hObject,'Value');
3750rootroot=get(hObject,'UserData');
3751selectname=list{index};
3752ind_dot=regexp(selectname,'\.\.\.');
3753if ~isempty(ind_dot)
3754    selectname=selectname(1:ind_dot-1);
3755end
3756FullSelectName=fullfile(rootroot,selectname);
3757if exist(FullSelectName,'dir')% a directory has been selected
3758    ListFiles=dir(FullSelectName);
3759    ListDisplay=cell(numel(ListFiles),1);
3760    for ilist=2:numel(ListDisplay)% suppress the first line '.'
3761        ListDisplay{ilist-1}=ListFiles(ilist).name;
3762    end
3763    set(hObject,'Value',1)
3764    set(hObject,'String',ListDisplay)
3765    if strcmp(selectname,'..')
3766        FullSelectName=fileparts(fileparts(FullSelectName));
3767    end
3768    set(hObject,'UserData',FullSelectName)
3769    hfig=get(hObject,'parent');
3770    htitlebox=findobj(hfig,'tag','titlebox');
3771    set(htitlebox,'String',FullSelectName)
3772elseif exist(FullSelectName,'file')%visualise the vel field if it exists
3773    FileInfo=get_file_info(FullSelectName);
3774    if strcmp(FileInfo.FileType,'txt')
3775        edit(FullSelectName)
3776    elseif strcmp(FileInfo.FileType,'xml')
3777        editxml(FullSelectName)
3778    else
3779        uvmat(FullSelectName)
3780    end
3781    set(gcbo,'Value',1)
3782end
3783
3784
3785%------------------------------------------------------------------------
3786% launched by refreshing the status figure
3787%------------------------------------------------------------------------
3788function refresh_GUI(hfig)
3789
3790htitlebox=findobj(hfig,'tag','titlebox');
3791hlist=findobj(hfig,'tag','list');
3792hseries=findobj(allchild(0),'tag','series');
3793hstatus=findobj(hseries,'tag','status');
3794StatusData=get(hstatus,'UserData');
3795OutputDir=get(htitlebox,'String');
3796if ischar(OutputDir),OutputDir={OutputDir};end
3797ListFiles=dir(OutputDir{1});
3798if numel(ListFiles)<1
3799    return
3800end
3801ListFiles(1)=[]; % removes the first line ='.'
3802ListDisplay=cell(numel(ListFiles),1);
3803testrecent=0;
3804datnum=zeros(numel(ListDisplay),1);
3805for ilist=1:numel(ListDisplay)
3806    ListDisplay{ilist}=ListFiles(ilist).name;
3807      if ~ListFiles(ilist).isdir && isfield(ListFiles(ilist),'datenum')
3808            datnum(ilist)=ListFiles(ilist).datenum; % only available in recent matlab versions
3809            testrecent=1;
3810       end
3811end
3812set(hlist,'String',ListDisplay)
3813
3814%% Look at date of creation
3815ListDisplay=ListDisplay(datnum~=0);
3816datnum=datnum(datnum~=0); % keep the non zero values corresponding to existing files
3817NbOutputFile=[];
3818if isempty(datnum)
3819    if testrecent
3820        message='no civ result created yet';
3821    else
3822        message='';
3823    end
3824else
3825    [first,indfirst]=min(datnum);
3826    [last,indlast]=max(datnum);
3827    NbOutputFile_str='?';
3828    NbOutputFile=[];
3829    if isfield(StatusData,'NbOutputFile')
3830        NbOutputFile=StatusData.NbOutputFile;
3831        NbOutputFile_str=num2str(NbOutputFile);
3832    end
3833    message={[num2str(numel(datnum)) ' file(s) done over ' NbOutputFile_str] ;['oldest modification:  ' ListDisplay{indfirst} ' : ' datestr(first)];...
3834        ['latest modification:  ' ListDisplay{indlast} ' : ' datestr(last)]};
3835end
3836set(htitlebox,'String', [OutputDir{1};message])
3837
3838%% update the waitbar
3839hwaitbar=findobj(hfig,'tag','waitbar');
3840if ~isempty(NbOutputFile)
3841    BarPosition=get(hwaitbar,'Position');
3842    BarPosition(3)=0.9*numel(datnum)/NbOutputFile;
3843    set(hwaitbar,'Position',BarPosition)
3844end
3845
3846%------------------------------------------------------------------------
3847% --- Executes on selection change in ActionExt.
3848%------------------------------------------------------------------------
3849function ActionExt_Callback(hObject, eventdata, handles)
3850
3851ActionExtList=get(handles.ActionExt,'String');
3852ActionExt=ActionExtList{get(handles.ActionExt,'Value')};
3853if strcmp(ActionExt,'fluidimage')
3854    set(handles.RunMode,'Value',2)
3855end
3856
3857
3858function num_NbSlice_Callback(hObject, eventdata, handles)
3859NbSlice=str2num(get(handles.num_NbSlice,'String'));
3860
3861%------------------------------------------------------------------------
3862% --- set the visibility of relevant velocity type menus:
3863function menu=set_veltype_display(Civ,FileType)
3864%------------------------------------------------------------------------
3865if ~exist('FileType','var')
3866    FileType='civx';
3867end
3868switch FileType
3869    case 'civx'
3870        menu={'civ1';'interp1';'filter1';'civ2';'interp2';'filter2'};
3871        if isequal(Civ,0)
3872            imax=0;
3873        elseif isequal(Civ,1) || isequal(Civ,2)
3874            imax=1;
3875        elseif isequal(Civ,3)
3876            imax=3;
3877        elseif isequal(Civ,4) || isequal(Civ,5)
3878            imax=4;
3879        elseif isequal(Civ,6) %patch2
3880            imax=6;
3881        end
3882    case 'civdata'
3883        menu={'civ1';'filter1';'civ2';'filter2'};
3884        if isequal(Civ,0)
3885            imax=0;
3886        elseif isequal(Civ,1) || isequal(Civ,2)
3887            imax=1;
3888        elseif isequal(Civ,3)
3889            imax=2;
3890        elseif isequal(Civ,4) || isequal(Civ,5)
3891            imax=3;
3892        else%if isequal(Civ,6) %patch2
3893            imax=4;
3894        end
3895end
3896menu=menu(1:imax);
3897
3898
3899% --- Executes on mouse motion over figure - except title and menu.
3900% function series_WindowButtonMotionFcn(hObject, eventdata, handles)
3901% set(hObject,'Pointer','arrow');
3902
3903
3904% --- Executes on button press in SetPairs.
3905function SetPairs_Callback(hObject, eventdata, handles)
3906
3907%% delete previous occurrence of 'set_pairs'
3908hfig=findobj(allchild(0),'Tag','set_pairs');
3909if ~isempty(hfig)
3910delete(hfig)
3911end
3912
3913%% create the GUI set_pairs
3914set(0,'Unit','points')
3915ScreenSize=get(0,'ScreenSize'); % get the size of the screen, to put the fig on the upper right
3916Width=220; % fig width in points (1/72 inch)
3917Height=min(0.8*ScreenSize(4),300);
3918Left=ScreenSize(3)- Width-40; % right edge close to the right, with margin=40
3919Bottom=ScreenSize(4)-Height-40; % put fig at top right
3920hfig=findobj(allchild(0),'Tag','set_slice');
3921if ~isempty(hfig),delete(hfig), end; % delete existing version of the GUI
3922hfig=figure('name','set_pairs','tag','set_pairs','MenuBar','none','NumberTitle','off','Unit','points','Position',[Left,Bottom,Width,Height]);
3923BackgroundColor=get(hfig,'Color');
3924SeriesData=get(handles.series,'UserData');
3925TimeUnit=get(handles.TimeUnit,'String');
3926PairString=get(handles.PairString,'Data');
3927ListViewLines=find(cellfun('isempty',PairString)==0); % find list of non empty pairs
3928ListViewMenu=cell(numel(ListViewLines),1);
3929%iview=get(handles.PairString,'Value');
3930iview=[];
3931for ilist=1:numel(ListViewLines)
3932    ListViewMenu{ilist}=num2str(ListViewLines(ilist));
3933end
3934if isempty(iview)
3935    ListViewValue=numel(ListViewLines); % we work by default on the pair option for the last line which requires pairs
3936    iview=ListViewLines(end);
3937else
3938    ListViewValue=find(ListViewLines==iview);
3939end
3940ref_i=str2num(get(handles.num_first_i,'String'));
3941ref_j=1; % default
3942if strcmp(get(handles.num_first_j,'String'),'Visible')
3943    ref_j=str2num(get(handles.num_first_j,'String'));
3944end
3945[ModeMenu,ModeValue]=update_mode(SeriesData.i1_series{1},SeriesData.i2_series{1},SeriesData.j2_series{1});
3946InputTable=get(handles.InputTable,'Data');
3947displ_pair=update_listpair(SeriesData.i1_series{1},SeriesData.i2_series{1},SeriesData.j1_series{1},SeriesData.j2_series{1},ModeMenu{ModeValue},...
3948                                                 SeriesData.Time{1},TimeUnit,ref_i,ref_j,SeriesData.TimeName,InputTable,SeriesData.FileInfo{1});
3949for iline=1:size(InputTable,1)
3950    viewcell{iline}=num2str(iline);
3951end
3952viewcell=viewcell';
3953ModeMenu={'bursts';'series(Dj)'};
3954ModeValue=1;
3955                   %i1_series,i2_series,j1_series,j2_series,mode,time,TimeUnit,ref_i,ref_j,TimeName,InputTable,FileInfo
3956% first raw of the GUI
3957uicontrol('Style','text','Units','normalized', 'Position', [0.05 0.88 0.5 0.1],'BackgroundColor',BackgroundColor,...
3958    'String','row to edit #','FontUnits','points','FontSize',12,'FontWeight','bold','ForegroundColor','blue','HorizontalAlignment','right'); % title
3959uicontrol('Style','popupmenu','Units','normalized', 'Position', [0.54 0.8 0.3 0.2],'BackgroundColor',[1 1 1],...
3960    'Callback',@(hObject,eventdata)ListView_Callback(hObject,eventdata),'String',viewcell,'Value',1,'FontUnits','points','FontSize',12,'FontWeight','bold',...
3961    'Tag','ListView','TooltipString','''ListView'':choice of the file series w for pair display');
3962% second raw of the GUI
3963uicontrol('Style','text','Units','normalized', 'Position', [0.05 0.79 0.7 0.1],'BackgroundColor',BackgroundColor,...
3964    'String','mode of index pairing:','FontUnits','points','FontSize',12,'FontWeight','bold','ForegroundColor','blue','HorizontalAlignment','left'); % title
3965uicontrol('Style','popupmenu','Units','normalized', 'Position', [0.05 0.62 0.9 0.2],'BackgroundColor',[1 1 1],...
3966    'Callback',@(hObject,eventdata)Mode_Callback(hObject,eventdata),'String',ModeMenu,'Value',ModeValue,'FontUnits','points','FontSize',12,'FontWeight','bold',...
3967    'Tag','Mode','TooltipString','''Mode'': choice of the image pair mode');
3968% third raw
3969uicontrol('Style','text','Units','normalized', 'Position', [0.05 0.6 0.7 0.1],'BackgroundColor',BackgroundColor,...
3970    'String','pair choice:','FontUnits','points','FontSize',12,'FontWeight','bold','ForegroundColor','blue','HorizontalAlignment','left'); % title
3971uicontrol('Style','listbox','Units','normalized', 'Position', [0.05 0.42 0.9 0.2],'BackgroundColor',[1 1 1],...
3972    'Callback',@(hObject,eventdata)ListPair_Callback(hObject,eventdata),'String',displ_pair,'Value',1,'FontUnits','points','FontSize',12,'FontWeight','bold',...
3973    'Tag','ListPair','TooltipString','''ListPair'': menu for selecting the image pair');
3974uicontrol('Style','text','Units','normalized', 'Position', [0.1 0.22 0.8 0.1],'BackgroundColor',BackgroundColor,...
3975    'String','ref_i           ref_j','FontUnits','points','FontSize',12,'FontWeight','bold','ForegroundColor','blue','HorizontalAlignment','center'); % title
3976uicontrol('Style','edit','Units','normalized', 'Position', [0.15 0.17 0.3 0.08],'BackgroundColor',[1 1 1],...
3977    'Callback',@(hObject,eventdata)num_ref_i_Callback(hObject,eventdata),'String',num2str(ref_i),'FontUnits','points','FontSize',12,'FontWeight','bold',...
3978    'Tag','num_ref_i','TooltipString','''num_ref_i'': reference field index i used to display dt in ''list_pair_civ''');
3979uicontrol('Style','edit','Units','normalized', 'Position', [0.55 0.17 0.3 0.08],'BackgroundColor',[1 1 1],...
3980    'Callback',@(hObject,eventdata)num_ref_j_Callback(hObject,eventdata),'String',num2str(ref_j),'FontUnits','points','FontSize',12,'FontWeight','bold',...
3981    'Tag','num_ref_j','TooltipString','''num_ref_j'': reference field index i used to display dt in ''list_pair_civ''');
3982uicontrol('Style','pushbutton','Units','normalized', 'Position', [0.01 0.01 0.3 0.12],'BackgroundColor',[0 1 0],...
3983    'Callback',@(hObject,eventdata)OK_Callback(hObject,eventdata),'String','OK','FontUnits','points','FontSize',12,'FontWeight','bold',...
3984    'Tag','OK','TooltipString','''OK'': validate the choice');
3985%  last raw  of the GUI: pushbuttons
3986% uicontrol('Style','pushbutton','Units','normalized', 'Position', [0.35 0.01 0.3 0.15],'BackgroundColor',[0 1 0],'String','OK','Callback',@(hObject,eventdata)OK_Callback(hObject,eventdata),...
3987%     'FontWeight','bold','FontUnits','points','FontSize',12,'TooltipString','''OK'': apply the output to the current field series in uvmat');
3988drawnow
3989
3990%------------------------------------------------------------------------
3991function ListView_Callback(hObject,eventdata)
3992Mode_Callback(hObject,eventdata)
3993
3994%------------------------------------------------------------------------
3995function Mode_Callback(hObject,eventdata)
3996%% get input info
3997hseries=findobj(allchild(0),'tag','series'); % handles of the GUI series
3998hhseries=guidata(hseries); % handles of the elements in the GUI series
3999TimeUnit=get(hhseries.TimeUnit,'String');
4000SeriesData=get(hseries,'UserData');
4001mode_list=get(hObject,'String');
4002mode=mode_list{get(hObject,'Value')};
4003hListView=findobj(get(hObject,'parent'),'Tag','ListView');
4004iview=get(hListView,'Value');
4005i1_series=SeriesData.i1_series{iview};
4006i2_series=SeriesData.i2_series{iview};
4007j1_series=SeriesData.j1_series{iview};
4008j2_series=SeriesData.j2_series{iview};
4009
4010%% enable j index visibility after the new choice
4011
4012if strcmp(mode,'series(Dj)')
4013   status_j='on'; % default
4014else
4015       status_j='off'; % no j index needed for bust case
4016end
4017enable_j(hhseries,status_j) % no j index needed
4018
4019%% get the reference indices for the time interval Dt
4020href_i=findobj(get(hObject,'parent'),'Tag','ref_i');
4021ref_i=[];ref_j=[];
4022if strcmp(get(href_i,'Visible'),'on')
4023    ref_i=str2num(get(href_i,'String'));
4024end
4025if isempty(ref_i)
4026    ref_i=1;
4027end
4028if isempty(ref_j)
4029    ref_j=1;
4030end
4031
4032%% update the menu ListPair
4033Menu=update_listpair(i1_series,i2_series,j1_series,j2_series,mode,SeriesData.Time{iview},TimeUnit,ref_i,ref_j,SeriesData.FileInfo);
4034hlist_pairs=findobj(get(hObject,'parent'),'Tag','ListPair');
4035set(hlist_pairs,'Value',1)% set the first choice by default in ListPair
4036set(hlist_pairs,'String',Menu)% set the menu in ListPair
4037ListPair_Callback(hlist_pairs,[])% apply the default choice in ListPair
4038
4039%-------------------------------------------------------------
4040% --- Executes on selection in ListPair.
4041function ListPair_Callback(hObject,eventdata)
4042%------------------------------------------------------------
4043list_pair=get(hObject,'String'); % get the menu of image pairs
4044if isempty(list_pair)
4045    string='';
4046else
4047    string=list_pair{get(hObject,'Value')};
4048   % string=regexprep(string,',.*',''); % removes time indication (after ',')
4049end
4050hseries=findobj(allchild(0),'tag','series');
4051hPairString=findobj(hseries,'tag','PairString');
4052PairString=get(hPairString,'Data');
4053hListView=findobj(get(hObject,'parent'),'Tag','ListView');
4054iview=get(hListView,'Value');
4055PairString{iview,1}=string;
4056% report the selected pair string to the table PairString
4057set(hPairString,'Data',PairString)
4058
4059
4060%------------------------------------------------------------------------
4061function num_ref_i_Callback(hObject, eventdata)
4062%------------------------------------------------------------------------
4063Mode_Callback([],[])
4064
4065%------------------------------------------------------------------------
4066function num_ref_j_Callback(hObject, eventdata)
4067%------------------------------------------------------------------------
4068Mode_Callback([],[])
4069
4070%------------------------------------------------------------------------
4071function OK_Callback(hObject, eventdata)
4072%------------------------------------------------------------------------
4073delete(get(hObject,'parent'))
4074
4075
4076%------------------------------------------------------------------------
4077% --- Executes on button press in ClearLine.
4078%------------------------------------------------------------------------
4079function ClearLine_Callback(hObject, eventdata, handles)
4080InputTable=get(handles.InputTable,'Data');
4081iline=str2double(get(handles.InputLine,'String'));
4082if size(InputTable,1)>1
4083    InputTable(iline,:)=[]; % suppress the current line if not the first
4084    set(handles.InputTable,'Data',InputTable);
4085end
4086set(handles.REFRESH,'BackgroundColor',[1 0 1])% set REFRESH button to magenta color to indicate that input refr
4087
4088
4089% --- Executes on button press in MonitorCluster.
4090function MonitorCluster_Callback(hObject, eventdata, handles)
4091
4092[rr,ss]=system('oarstat |grep N=UVmat');% check the list of jobs launched with uvmat
4093if isempty(ss)
4094   disp( 'no job presently submitted with uvmat')
4095else
4096    disp('format: R/W=run/wait, time lapsed, R=nbre of cores,W=walltime')
4097    disp(ss)
4098end
4099
4100
4101function OutputSubDir_Callback(hObject, eventdata, handles)
4102set(handles.OutputSubDir,'BackgroundColor',[1 1 1])
4103
4104
4105% --- Executes on button press in CheckOverwrite.
4106function CheckOverwrite_Callback(hObject, eventdata, handles)
4107
4108% --- Executes on button press in TestCPUTime.
4109function TestCPUTime_Callback(hObject, eventdata, handles)
4110% hObject    handle to TestCPUTime (see GCBO)
4111% eventdata  reserved - to be defined in a future version of MATLAB
4112% handles    structure with handles and user data (see GUIDATA)
4113
4114
4115% --- Executes on button press in DiskQuota.
4116function DiskQuota_Callback(hObject, eventdata, handles)
4117SeriesData=get(handles.series,'UserData');
4118system(SeriesData.DiskQuotaCmd)
4119
4120
4121% --- Executes on button press in Replicate.
4122function Replicate_Callback(hObject, eventdata, handles)
4123if get(handles.Replicate,'Value')
4124    InputTable=get(handles.InputTable,'Data');
4125    for ilist=1:size(InputTable,1)
4126        InputDir{ilist}=fullfile(InputTable{ilist,1},InputTable{ilist,2});
4127    end
4128    browse_data(InputDir)
4129else
4130    hh=findobj(allchild(0),'Tag','browse_data');
4131    if ~isempty(hh)
4132        delete(hh)
4133    end
4134end
4135
4136
4137function OutputPath_Callback(hObject, eventdata, handles)
4138
4139
4140function Experiment_Callback(hObject, eventdata, handles)
4141
4142
4143function Device_Callback(hObject, eventdata, handles)
4144
4145
4146% --- Executes on button press in OutputPathBrowse.
4147function OutputPathBrowse_Callback(hObject, eventdata, handles)
4148CheckValue=get(handles.OutputPathBrowse,'Value');
4149if CheckValue
4150OutputPath=uigetdir(get(handles.OutputPath,'String'));
4151set(handles.OutputPath,'String',OutputPath)
4152else
4153    InputTable=get(handles.InputTable,'Data');
4154    set(handles.OutputPath,'String',InputTable{1,1})
4155end
4156
4157
4158% --- Executes on button press in DeleteMask.
4159function DeleteMask_Callback(hObject, eventdata, handles)
4160set(handles.MaskTable,'Data',{})
4161
4162
4163% --- Executes on button press in Relabel.
4164function Relabel_Callback(hObject, eventdata, handles)
4165CheckRelabel=get(hObject,'Value');
4166if CheckRelabel
4167    InputTable=get(handles.InputTable,'Data');%read the table of input file series
4168    XmlFileName=find_imadoc(InputTable{1,1},InputTable{1,2});
4169    if ~isempty(XmlFileName)
4170        XmlData=read_imadoc(XmlFileName);
4171        if isempty(XmlData.FileSeries)
4172            browse_data(fullfile(InputTable{1,1},InputTable{1,2}))
4173        else
4174            hbrowse=findobj(allchild(0),'Tag','browse_data');
4175            if ~isempty(hbrowse)
4176                delete(hbrowse)
4177            end
4178        end
4179    end
4180end
4181check_input_file_series(handles,CheckRelabel)
4182ActionInput_Callback([],[], handles)
4183
4184
Note: See TracBrowser for help on using the repository browser.