source: trunk/src/series.m @ 1200

Last change on this file since 1200 was 1200, checked in by sommeria, 22 hours ago

bug repaired for civ image rescale

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