source: trunk/src/series.m @ 1004

Last change on this file since 1004 was 1004, checked in by augier3pi, 7 years ago

fluidimage compatibility.

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