source: trunk/src/series.m @ 1007

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

Add global time in case -m and background + solve bug launching.

File size: 167.8 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                            'time_start=$(date +%%s)\n'...
1925                            'matlab -nodisplay -nosplash -nojvm -logfile ''' filelog_global ''' <<END_MATLAB\n'...
1926                            'addpath(''' path_series '''); \n'...
1927                            'addpath(''' Param.Action.ActionPath '''); \n'];
1928                        for iprocess=1:NbProcess
1929                            cmd=[cmd '' Param.Action.ActionName  '( ''' filexml{iprocess} '''); \n'];
1930                        end
1931                        cmd=[cmd  'exit \n' 'END_MATLAB\n'...
1932                            'time_end=$(date +%%s)\n'...
1933                            'echo "global time = " $(($time_end - $time_start)) >> ''' filelog_global '''\n'];
1934                        fprintf(fid,cmd); % fill the executable file with the  char string cmd
1935                        fclose(fid); % close the executable filefilelog_global
1936                        system(['chmod +x ' file_exe_global]); % set the file to executable
1937                    case {'PCWIN','PCWIN64'}
1938                        cmd=['matlab -automation -logfile ' regexprep(filelog{iprocess},'\\','\\\\')...
1939                            ' -r "addpath(''' regexprep(path_series,'\\','\\\\') ''');'...
1940                            'addpath(''' regexprep(Param.Action.ActionPath,'\\','\\\\') ''');'];
1941                        for iprocess=1:NbProcess
1942                            cmd=[cmd '' Param.Action.ActionName  '( ''' regexprep(filexml{iprocess},'\\','\\\\') ''');']
1943                        end
1944                        cmd=[cmd ';exit"'];
1945                        fprintf(fid,cmd); % fill the executable file with the  char string cmd
1946                        fclose(fid); % close the executable file
1947                end
1948                system([file_exe_global ' &'])% directly execute the command file
1949            case '.sh' % compiled Matlab function
1950                for iprocess=1:NbProcess
1951                    switch computer
1952                        case {'GLNX86','GLNXA64','MACI64'}
1953                            [fid,message]=fopen(batch_file_list{iprocess},'w'); % create the executable file
1954                            if isequal(fid,-1)
1955                                errormsg=['creation of .bat file: ' message];
1956                                return
1957                            end
1958                            cmd=['#!/bin/bash \n '...
1959                                '#$ -cwd \n '...
1960                                'hostname && date \n '...
1961                                'umask 002 \n'...
1962                                ActionFullName ' ' RunTime ' ' filexml{iprocess}]; % allow writting access to created files for user group
1963                            fprintf(fid,cmd); % fill the executable file with the  char string cmd
1964                            fclose(fid); % close the executable file
1965                            system(['chmod +x ' batch_file_list{iprocess}]); % set the file to executable
1966                            system([batch_file_list{iprocess} ' &'])% directly execute the command file
1967                        case {'PCWIN','PCWIN64'}
1968                            msgbox_uvmat('ERROR','option for compiled Matlab functions not implemented for Windows system')
1969                            return
1970                    end
1971                end
1972                msgbox_uvmat('CONFIRMATION',[ActionFullName ' launched in background: press STATUS to see results'])
1973        end
1974       
1975    case 'cluster_oar' % option 'oar-parexec' used
1976        %create subdirectory for oar commands
1977        for iprocess=1:NbProcess
1978            [fid,message]=fopen(batch_file_list{iprocess},'w'); % create the executable file
1979            if isequal(fid,-1)
1980                errormsg=['creation of .bat file: ' message];
1981                return
1982            end
1983            if  strcmp(ActionExt,'.sh')
1984                cmd=['#!/bin/bash \n '...
1985                    '#$ -cwd \n '...
1986                    'hostname && date \n '...
1987                    'umask 002 \n'...
1988                    ActionFullName ' ' RunTime ' ' filexml{iprocess}]; % allow writting access to created files for user group
1989            else
1990                matlab_ver = ver('MATLAB');
1991                matlab_version = matlab_ver.Version;
1992                cmd=[...
1993                    '#!/bin/bash \n'...
1994                    'source /etc/profile \n'...
1995                    'module load matlab/''' matlab_version ''' \n'...% CHOICE OF MATLAB VERSION
1996                    'matlab -nodisplay -nosplash -nojvm -singleCompThread -logfile ''' filelog{iprocess} ''' <<END_MATLAB\n'...
1997                    'addpath(''' path_series '''); \n'...
1998                    'addpath(''' Param.Action.ActionPath '''); \n'...
1999                    '' Param.Action.ActionName  '( ''' filexml{iprocess} '''); \n'...
2000                    'exit' '\n'...
2001                    'END_MATLAB\n'];
2002            end
2003            fprintf(fid,cmd); % fill the executable file with the  char string cmd
2004            fclose(fid); % close the executable file
2005            system(['chmod +x ' batch_file_list{iprocess}]); % set the file to executable
2006        end
2007        DirOAR=fullfile(OutputDir,'0_OAR');
2008        if exist(DirOAR,'dir')% delete the content of the dir 0_LOG to allow new input
2009            curdir=pwd;
2010            cd(DirOAR)
2011            delete('*')
2012            cd(curdir)
2013        else
2014            [tild,msg1]=mkdir(DirOAR);
2015            if ~strcmp(msg1,'')
2016                errormsg=['cannot create ' DirOAR ': ' msg1]; % error message for directory creation
2017                return
2018            end
2019        end
2020        % create file containing the list of jobs
2021        filename_joblist=fullfile(DirOAR,'job_list.txt'); % name of the file containing the list of executables
2022        fid=fopen(filename_joblist,'w'); % open it for writting
2023        for iprocess=1:length(batch_file_list)
2024            fprintf(fid,[batch_file_list{iprocess} '\n']); % write list of exe files
2025        end
2026        fclose(fid);
2027        system(['chmod +x ' filename_joblist]); % set the file to executable
2028       
2029        filename_log=fullfile(DirLog,'job_list.stdout'); % file for output messages of the master oar process
2030        filename_errors=fullfile(DirLog,'job_list.stderr'); % file for error messages of the master oar process
2031        % the command job_list.txt contains the list of NbProcess independent individual jobs
2032        % in which the total calculation has been split. Those are written as executable files .sh in the folder /O_EXE.
2033        %  These individual jobs are grouped by the system as oar jobs on the NbCore processors.
2034        %  For each processor, the oar job must stop after the walltime which has been set, which is limited to 24 h.
2035        %  However, the oar job is automatically restarted (option 'idempotent') provided the individual jobs are
2036        % shorter than the wall time: in the time interval 'checkpoint' (WallTimeOneJob) before the end of the allowed duration,
2037        %  the oar job restarts when an individual job ends.
2038        WallTimeMax=SeriesData.SeriesParam.OarParam.WallTimeMax;
2039        JobTime=CPUTime*BlockLength*nbfield_j; % estimated CPU time for one individual job (in minutes)
2040        % wall time (in hours ) for each oar job, allowing 10 individual jobs, but limited to 23 h:
2041        WallTimeTotal=min(WallTimeMax,4*JobTime/60);
2042        %disp(['WallTimeTotal: ' num2str(WallTimeTotal) ' hours'])
2043        % estimated time of an individual job (in min), with a margin of error
2044        WallTimeOneJob=min(4*JobTime+10,WallTimeTotal*60/2); % estimated max time of an individual job for checkpoint
2045        disp(['WallTimeOneJob: ' num2str(WallTimeOneJob) ' minutes'])
2046        oar_command=['oarsub -n UVmat_' ActionFullName ' '...
2047            '-t idempotent --checkpoint ' num2str(WallTimeOneJob*60) ' '...
2048            '-l "/core=' num2str(NbCore)...
2049            '+{type = ' char(39) 'bigiojob' char(39) '}/licence=1'... % char(39) is quote - bigiojob limit UVmat parallel launch on cluster
2050            ',walltime=' datestr(WallTimeTotal/24,13) '" '...
2051            '-E ' filename_errors ' '...
2052            '-O ' filename_log ' '...
2053            extra_oar ' '...
2054            '"oar-parexec -s -f ' filename_joblist ' '...
2055            '-l ' filename_joblist '.log"'];
2056       
2057        fprintf(oar_command); % display  system command on the Matlab command window
2058        [status,result]=system(oar_command)% execute system command and show the result (ID number of the launched job) on the Matlab command window
2059        filename_oarcommand=fullfile(DirOAR,'0_oar_command'); % keep track of the command in file '0-OAR/0_oar_command'
2060        fid=fopen(filename_oarcommand,'w');
2061        fprintf(fid,oar_command); % store the command
2062        fprintf(fid,result); % store the result (job ID number)
2063        fclose(fid);
2064        msgbox_uvmat('CONFIRMATION',[ActionFullName ' launched as  ' num2str(NbProcess) ' processes in cluster: press STATUS to see results'])
2065       
2066    case 'cluster_pbs' % for LMFA Kepler machine
2067        %create subdirectory for pbs command and log files
2068        DirPBS=fullfile(OutputDir,'0_PBS'); % todo : common name OAR/PBS
2069        if exist(DirPBS,'dir')% delete the content of the dir 0_LOG to allow new input
2070            curdir=pwd;
2071            cd(DirPBS)
2072            delete('*')
2073            cd(curdir)
2074        else
2075            [tild,msg1]=mkdir(DirPBS);
2076            if ~strcmp(msg1,'')
2077                errormsg=['cannot create ' DirPBS ': ' msg1]; % error message for directory creation
2078                return
2079            end
2080        end
2081        max_walltime=3600*20; % 20h max total calculation (cannot exceed 24 h)
2082        walltime_onejob=1800; % seconds, max estimated time for asingle file index value
2083        filename_joblist=fullfile(DirPBS,'job_list.txt'); % create name of the global executable file
2084        fid=fopen(filename_joblist,'w');
2085        for iprocess=1:length(batch_file_list)
2086            fprintf(fid,[batch_file_list{iprocess} '\n']); % list of exe files
2087        end
2088        fclose(fid);
2089        system(['chmod +x ' filename_joblist]); % set the file to executable
2090        pbs_command=['qsub -n CIVX '...
2091            '-t idempotent --checkpoint ' num2str(walltime_onejob+60) ' '...
2092            '-l /core=' num2str(NbCore) ','...
2093            'walltime=' datestr(min(1.05*walltime_onejob/86400*max(NbProcess*BlockLength*nbfield_j,NbCore)/NbCore,max_walltime/86400),13) ' '...
2094            '-E ' regexprep(filename_joblist,'\.txt\>','.stderr') ' '...
2095            '-O ' regexprep(filename_joblist,'\.txt\>','.log') ' '...
2096            extra_qstat ' '...
2097            '"oar-parexec -s -f ' filename_joblist ' '...
2098            '-l ' filename_joblist '.log"'];
2099        filename_oarcommand=fullfile(DirPBS,'pbs_command');
2100        fid=fopen(filename_oarcommand,'w');
2101        fprintf(fid,pbs_command);
2102        fclose(fid);
2103        fprintf(pbs_command); % display in command line
2104        %system(pbs_command);
2105        msgbox_uvmat('CONFIRMATION',[ActionFullName ' command ready to be launched in cluster'])
2106
2107     case 'cluster_sge' % for PSMN
2108        % Au PSMN, on ne cr??e pas 1 job avec plusieurs c??urs, mais N jobs de 1 c??urs
2109        % o?? N < 1000.
2110        %create subdirectory for pbs command and log files
2111
2112        DirSGE=fullfile(OutputDir,'0_SGE');
2113        if exist(DirSGE,'dir')% delete the content of the dir 0_LOG to allow new input
2114            curdir=pwd;
2115            cd(DirSGE)
2116            delete('*')
2117            cd(curdir)
2118        else
2119            [tild,msg1]=mkdir(DirSGE);
2120            if ~strcmp(msg1,'')
2121                errormsg=['cannot create ' DirSGE ': ' msg1]; % error message for directory creation
2122                return
2123            end
2124        end
2125        maxImgsPerJob = ceil(length(batch_file_list)/NbCore);
2126        disp(['Max number of jobs: ' num2str(NbCore)])
2127        disp(['Images per job: ' num2str(maxImgsPerJob)])
2128       
2129        iprocess = 1;
2130        imgsInJob = [];
2131        currJobIndex = 1;
2132        done = 0;
2133        while(~done)
2134            if(iprocess <= length(batch_file_list))
2135                imgsInJob = [imgsInJob, iprocess];
2136            end
2137            if((numel(imgsInJob) >= maxImgsPerJob) || (iprocess == length(batch_file_list)))
2138                cmd=['#!/bin/sh \n'...
2139                     '#$ -cwd \n'...
2140                     'hostname && date\n']
2141                for ii=1:numel(imgsInJob)
2142                    cmd=[cmd ActionFullName ' /softs/matlab ' filexml{imgsInJob(ii)} '\n'];
2143                end
2144                [fid, message] = fopen([DirSGE '/job' num2str(currJobIndex) '.sh'], 'w');
2145                fprintf(fid, cmd);
2146                fclose(fid);
2147                system(['chmod +x ' DirSGE '/job' num2str(currJobIndex) '.sh'])
2148                sge_command=['qsub -N civ_' num2str(currJobIndex) ' '...
2149                    '-q ' qstat_Queue ' '...
2150                    '-e ' fullfile([DirSGE '/job' num2str(currJobIndex) '.out']) ' '...
2151                    '-o ' fullfile([DirSGE '/job' num2str(currJobIndex) '.out']) ' '...
2152                    fullfile([DirSGE '/job' num2str(currJobIndex) '.sh'])];
2153                fprintf(sge_command); % display in command line
2154                [status, result] = system(sge_command);
2155                fprintf(result);
2156                currJobIndex = currJobIndex + 1;
2157                imgsInJob = [];
2158            end
2159            if(iprocess == length(batch_file_list))
2160                done = 1;
2161            end
2162            iprocess = iprocess + 1;
2163        end
2164        msgbox_uvmat('CONFIRMATION',[num2str(currJobIndex-1) ' jobs launched on queue ' qstat_Queue '.'])
2165    case 'python'
2166        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))") ' ...
2167            'python -m fluidimage.run_from_xml ' filexml{iprocess}];
2168        fprintf(['command:\n' command '\n\n'])
2169        system(command, '-echo');
2170end
2171if exist(OutputDir,'dir')
2172    [SUCCESS,MESSAGE,MESSAGEID] = fileattrib (OutputDir);
2173    if MESSAGE.GroupWrite~=1
2174    [success,msg] = fileattrib(OutputDir,'+w','g','s'); % allow writing access for the group of users, recursively in the folder
2175    if success==0
2176        msgbox_uvmat('WARNING',{['unable to set group write access to ' OutputDir ':']; msg}); % error message for directory creation
2177    end
2178    end
2179end
2180
2181%------------------------------------------------------------------------
2182function STOP_Callback(hObject, eventdata, handles)
2183%------------------------------------------------------------------------
2184set(handles.RUN, 'BusyAction','cancel')
2185set(handles.RUN,'BackgroundColor',[1 0 0])
2186set(handles.RUN,'enable','on')
2187set(handles.RUN, 'Value',0)
2188
2189%------------------------------------------------------------------------
2190% --- read parameters from the GUI series
2191%------------------------------------------------------------------------
2192function Param=read_GUI_series(handles)
2193
2194%% read raw parameters from the GUI series
2195Param=read_GUI(handles.series);
2196
2197%% clean the output structure by removing unused information
2198if isfield(Param,'Pairs')
2199    Param=rmfield(Param,'Pairs'); % info Pairs not needed for output
2200end
2201if isfield(Param,'InputLine')
2202    Param=rmfield(Param,'InputLine');
2203end
2204if isfield(Param,'EditObject')
2205    Param=rmfield(Param,'EditObject');
2206end
2207Param.IndexRange.TimeSource=Param.IndexRange.TimeTable{end,1};
2208Param.IndexRange=rmfield(Param.IndexRange,'TimeTable');
2209empty_line=false(size(Param.InputTable,1),1);
2210for iline=1:size(Param.InputTable,1)
2211    empty_line(iline)=isempty(cell2mat(Param.InputTable(iline,1:3)));
2212end
2213Param.InputTable(empty_line,:)=[];
2214
2215%------------------------------------------------------------------------
2216% --- Executes on selection change in ActionName.
2217function ActionName_Callback(hObject, eventdata, handles)
2218%------------------------------------------------------------------------
2219
2220%% stop any ongoing series processing
2221if isequal(get(handles.RUN,'Value'),1)
2222    answer= msgbox_uvmat('INPUT_Y-N','stop current Action process?');
2223    if strcmp(answer,'Yes')
2224        STOP_Callback(hObject, eventdata, handles)
2225    else
2226        return
2227    end
2228end
2229set(handles.ActionName,'BackgroundColor',[1 1 0])
2230huigetfile=findobj(allchild(0),'tag','status_display');
2231if ~isempty(huigetfile)
2232    delete(huigetfile)
2233end
2234drawnow
2235
2236%% get Action name and path
2237NbBuiltinAction=get(handles.Action,'UserData'); % nbre of functions initially proposed in the menu ActionName (as defined in the Opening fct of series)
2238ActionList=get(handles.ActionName,'String'); % list menu fields
2239ActionIndex=get(handles.ActionName,'Value');
2240if ~isequal(ActionIndex,1)% if we are not just opening series
2241    InputTable=get(handles.InputTable,'Data');
2242    if isempty(InputTable{1,4})
2243        msgbox_uvmat('ERROR','no input file available: use Open in the menu bar')
2244        return
2245    end
2246end
2247ActionName= ActionList{get(handles.ActionName,'Value')}; % selected function name
2248ActionPathList=get(handles.ActionName,'UserData'); % list of recorded paths to functions of the list ActionName
2249
2250%% add a new function to the menu if 'more...' has been selected in the menu ActionName
2251if isequal(ActionName,'more...')
2252    [FileName, PathName] = uigetfile( ...
2253        {'*.m', ' (*.m)';
2254        '*.m',  '.m files '; ...
2255        '*.*', 'All Files (*.*)'}, ...
2256        'Pick a series processing function ',get(handles.ActionPath,'String'));
2257    if length(FileName)<2
2258        return
2259    end
2260    [tild,ActionName,ActionExt]=fileparts(FileName);
2261   
2262    % insert the choice in the menu ActionName
2263    ActionIndex=find(strcmp(ActionName,ActionList),1); % look for the selected function in the menu Action
2264    PathName=regexprep(PathName,'/$','');
2265    if ~isempty(ActionIndex) && ~strcmp(ActionPathList{ActionIndex},PathName)%compare the path to the existing fct
2266        ActionIndex=[]; % the selected path is different than the recorded one
2267    end
2268    if isempty(ActionIndex)%the qselected fct (with selected path) does not exist in the menu
2269        ActionIndex= length(ActionList);
2270        ActionList=[ActionList(1:end-1);{ActionName};ActionList(end)]; % the selected function is appended in the menu, before the last item 'more...'
2271         ActionPathList=[ActionPathList; PathName];
2272    end
2273   
2274    % record the file extension and extend the path list if it is a new extension
2275    ActionExtList=get(handles.ActionExt,'String');
2276    ActionExtIndex=find(strcmp(ActionExt,ActionExtList), 1);
2277    if isempty(ActionExtIndex)
2278        set(handles.ActionExt,'String',[ActionExtList;{ActionExt}])
2279    end
2280
2281    % remove old Action options in the menu (keeping a menu length <nb_builtin_ACTION+5)
2282    if length(ActionList)>NbBuiltinAction+5; % nb_builtin_ACTION=nbre of functions always remaining in the initial menu
2283        nbremove=length(ActionList)-NbBuiltinAction-5;
2284        ActionList(NbBuiltinAction+1:end-5)=[];
2285        ActionPathList(NbBuiltinAction+1:end-4,:)=[];
2286        ActionIndex=ActionIndex-nbremove;
2287    end
2288   
2289    % record action menu, choice and path
2290    set(handles.ActionName,'Value',ActionIndex)
2291    set(handles.ActionName,'String',ActionList)
2292       set(handles.ActionName,'UserData',ActionPathList);
2293    set(handles.ActionExt,'Value',ActionExtIndex)
2294       
2295    %record the user defined menu additions in personal file profil_perso
2296    dir_perso=prefdir;
2297    profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
2298    if NbBuiltinAction+1<=numel(ActionList)-1
2299        ActionListUser=ActionList(NbBuiltinAction+1:numel(ActionList)-1);
2300        ActionPathListUser=ActionPathList(NbBuiltinAction+1:numel(ActionList)-1);
2301        ActionExtListUser={};
2302        if numel(ActionExtList)>2
2303            ActionExtListUser=ActionExtList(3:end);
2304        end
2305        if exist(profil_perso,'file')
2306            save(profil_perso,'ActionListUser','ActionPathListUser','ActionExtListUser','-append')
2307        else
2308            save(profil_perso,'ActionListUser','ActionPathListUser','ActionExtListUser','-V6')
2309        end
2310    end
2311end
2312
2313%% check the current ActionPath to the selected function
2314ActionPath=ActionPathList{ActionIndex}; % current recorded path
2315set(handles.ActionPath,'String',ActionPath); % show the path to the senlected function
2316
2317%% reinitialise the waitbar
2318update_waitbar(handles.Waitbar,0)
2319
2320%% Put the first line of the selected Action fct as tooltip help
2321try
2322    [fid,errormsg] =fopen([ActionName '.m']);
2323    InputText=textscan(fid,'%s',1,'delimiter','\n');
2324    fclose(fid);
2325    set(handles.ActionName,'ToolTipString',InputText{1}{1})% put the first line of the selected function as tooltip help
2326end
2327set(handles.ActionName,'BackgroundColor',[1 1 1])
2328set(handles.ActionInput,'BackgroundColor',[1 0 1])% set ActionInput button to magenta color to indicate that input refr
2329
2330
2331% --- Executes on button press in ActionInput.
2332function ActionInput_Callback(hObject, eventdata, handles)
2333
2334set(handles.ActionInput,'BackgroundColor',[1 1 0])
2335
2336%% create the function handle for Action
2337ActionPath=get(handles.ActionPath,'String');
2338ActionList=get(handles.ActionName,'String');
2339ActionName= ActionList{get(handles.ActionName,'Value')}; % selected function name
2340if ~exist(ActionPath,'dir')
2341    msgbox_uvmat('ERROR',['The prescribed function path ' ActionPath ' does not exist']);
2342    return
2343end
2344current_dir=pwd; % current working dir
2345cd(ActionPath)
2346h_fun=str2func(ActionName);
2347cd(current_dir)
2348
2349%% Activate the Action fct to adapt the configuration of the GUI series and bring specific parameters in SeriesData
2350Param=read_GUI_series(handles); % read the parameters from the GUI series
2351Param.Action.RUN=0;
2352ParamOut=h_fun(Param); % run the selected Action function to get the relevant input
2353
2354
2355%% Visibility of VelType and VelType_1 menus asked by ActionName
2356VelTypeRequest=1; % VelType requested by default
2357VelTypeRequest_1=1; % VelType requested by default
2358if isfield(ParamOut,'VelType')
2359    VelTypeRequest=ismember(ParamOut.VelType,{'on','one','two'});
2360    VelTypeRequest_1=strcmp( ParamOut.VelType,'two');
2361end
2362FieldNameRequest=0;  %hidden by default
2363FieldNameRequest_1=0;  %hidden by default
2364if isfield(ParamOut,'FieldName')
2365    FieldNameRequest=ismember(ParamOut.FieldName,{'on','one','two'});
2366    FieldNameRequest_1=strcmp( ParamOut.FieldName,'two');
2367end
2368
2369%% Detect the types of input files and set menus and default options in 'VelType'
2370SeriesData=get(handles.series,'UserData'); % info on the input file series
2371iview_civ=find(strcmp('civx',SeriesData.FileType)|strcmp('civdata',SeriesData.FileType));
2372iview_netcdf=find(strcmp('netcdf',SeriesData.FileType)|strcmp('civx',SeriesData.FileType)|strcmp('civdata',SeriesData.FileType)); % all nc files, icluding civ
2373FieldList=get(handles.FieldName,'String'); % previous list as default
2374if ~iscell(FieldList),FieldList={FieldList};end
2375FieldList_1=get(handles.FieldName_1,'String'); % previous list as default
2376if ~iscell(FieldList_1),FieldList_1={FieldList_1};end
2377%CheckList=0; % indicate whether FieldName has been updated
2378CheckList_1=1; % indicate whether FieldName_1 has been updated
2379handles_coord=[handles.Coord_x handles.Coord_y handles.Coord_z handles.Coord_x_title handles.Coord_y_title handles.Coord_z_title];
2380if VelTypeRequest && numel(iview_civ)>=1
2381    menu=set_veltype_display(SeriesData.FileInfo{iview_civ(1)}.CivStage,SeriesData.FileType{iview_civ(1)});
2382    set(handles.VelType,'Value',1)% set first choice by default
2383    set(handles.VelType,'String',[{'*'};menu])
2384    set(handles.VelType,'Visible','on')
2385    set(handles.VelType_title,'Visible','on')
2386    FieldList=[set_field_list('U','V');{'C'};{'get_field...'}]; % standard menu for civx data
2387    %CheckList=1;
2388    set(handles.FieldName,'Value',1); % velocity vector choice by default
2389    if  VelTypeRequest_1 && numel(iview_civ)>=2
2390        menu=set_veltype_display(SeriesData.FileInfo{iview_civ(2)}.CivStage,SeriesData.FileType{iview_civ(2)});
2391        set(handles.VelType_1,'Value',1)% set first choice by default
2392        set(handles.VelType_1,'String',[{'*'};menu])
2393        set(handles.VelType_1,'Visible','on')
2394        set(handles.VelType_title_1,'Visible','on')
2395        FieldList_1=[set_field_list('U','V');{'C'};{'get_field...'}]; % standard menu for civx data
2396        CheckList_1=1;
2397        set(handles.FieldName_1,'Value',1); % velocity vector choice by default
2398    else
2399        set(handles.VelType_1,'Visible','off')
2400        set(handles.VelType_title_1,'Visible','off')
2401    end
2402else
2403    set(handles.VelType,'Visible','off')
2404    set(handles.VelType_title,'Visible','off')
2405end
2406
2407%% Detect the types of input files and set menus and default options in 'FieldName'
2408if (FieldNameRequest || VelTypeRequest) && numel(iview_netcdf)>=1
2409    set(handles.InputFields,'Visible','on')% set the frame InputFields visible
2410    if FieldNameRequest && isfield(SeriesData.FileInfo{iview_netcdf(1)},'ListVarName')
2411        set(handles.FieldName,'Visible','on')
2412        ListVarName=SeriesData.FileInfo{iview_netcdf(1)}.ListVarName;
2413        ind_var=get(handles.FieldName,'Value'); % indices of previously selected variables
2414        for ilist=1:numel(ind_var)
2415            if isempty(find(strcmp(FieldList{ind_var(ilist)},ListVarName)))
2416                FieldList={}; % previous choice not consistent with new input field
2417                set(handles.FieldName,'Value',1)
2418                break
2419            end
2420        end
2421        if ~isempty(FieldList)
2422            if isempty(find(strcmp(get(handles.Coord_x,'String'),ListVarName)))||...
2423                    isempty(find(strcmp(get(handles.Coord_y,'String'),ListVarName)))
2424                FieldList={};
2425                set(handles.Coord_x,'String','')
2426                set(handles.Coord_y,'String','')
2427            end
2428            Coord_z=get(handles.Coord_z,'String');
2429            if ~isempty(Coord_z) && isempty(find(strcmp(Coord_z,ListVarName)))
2430                FieldList={};
2431                set(handles.Coord_z,'String','')
2432            end
2433        end
2434    else
2435        set(handles.FieldName,'Visible','off')
2436    end
2437   
2438    set(handles_coord,'Visible','on')
2439    FieldList=[FieldList;{'get_field...'}];
2440    if FieldNameRequest_1 && numel(iview_netcdf)>=2
2441        set(handles.FieldName_1,'Visible','on')
2442        if CheckList_1==0        % not civ input made
2443            ListVarName=SeriesData.FileInfo{iview_netcdf(2)}.ListVarName;
2444            ind_var=get(handles.FieldName,'Value'); % indices of previously selected variables
2445            for ilist=1:numel(ind_var)
2446                if isempty(find(strcmp(FieldList{ind_var(ilist)},ListVarName)))
2447                    FieldList_1={}; % previous choice not consistent with new input field
2448                    set(handles.FieldName_1,'Value',1)
2449                    break
2450                end
2451            end
2452            warn_coord=0;
2453            if isempty(find(strcmp(get(handles.Coord_x,'String'),ListVarName)))||...
2454                    isempty(find(strcmp(get(handles.Coord_y,'String'),ListVarName)))
2455                warn_coord=1;
2456            end
2457            if ~isempty(Coord_z) && isempty(find(strcmp(Coord_z,ListVarName)))
2458                FieldList_1={};
2459                warn_coord=1;
2460            end
2461            if warn_coord
2462                msgbox_uvmat('WARNING','coordinate names do not exist in the second netcdf input file')
2463            end
2464           
2465            set(handles.FieldName_1,'Visible','on')
2466            set(handles.FieldName_1,'Value',1)
2467            set(handles.FieldName_1,'String',FieldList_1)
2468        end
2469    else
2470        set(handles.FieldName_1,'Visible','off')
2471    end
2472    if isempty(FieldList)
2473        set(handles.FieldName,'Visible','off')
2474    else
2475        set(handles.FieldName,'Visible','on')
2476        set(handles.FieldName,'String',FieldList)
2477    end
2478else
2479    set(handles.InputFields,'Visible','off')
2480end
2481
2482%% Introduce visibility of file overwrite option
2483if isfield(ParamOut,'CheckOverwriteVisible')&& strcmp(ParamOut.CheckOverwriteVisible,'on')
2484    set(handles.CheckOverwrite,'Visible','on')
2485else
2486    set(handles.CheckOverwrite,'Visible','off')
2487end
2488
2489%% Check whether alphabetical sorting of input Subdir is allowed by the Action fct  (for multiples series entries)
2490if isfield(ParamOut,'AllowInputSort')&&isequal(ParamOut.AllowInputSort,'on')&& size(Param.InputTable,1)>1
2491    [tild,iview]=sort(InputTable(:,2)); % subdirectories sorted in alphabetical order
2492    set(handles.InputTable,'Data',InputTable(iview,:));
2493    MinIndex_i=get(handles.MinIndex_i,'Data');
2494    MinIndex_j=get(handles.MinIndex_j,'Data');
2495    MaxIndex_i=get(handles.MaxIndex_i,'Data');
2496    MaxIndex_j=get(handles.MaxIndex_j,'Data');
2497    set(handles.MinIndex_i,'Data',MinIndex_i(iview,:));
2498    set(handles.MinIndex_j,'Data',MinIndex_j(iview,:));
2499    set(handles.MaxIndex_i,'Data',MaxIndex_i(iview,:));
2500    set(handles.MaxIndex_j,'Data',MaxIndex_j(iview,:));
2501    TimeTable=get(handles.TimeTable,'Data');
2502    set(handles.TimeTable,'Data',TimeTable(iview,:));
2503    PairString=get(handles.PairString,'Data');
2504    set(handles.PairString,'Data',PairString(iview,:));
2505end
2506
2507%% Impose the whole input file index range if requested
2508if isfield(ParamOut,'WholeIndexRange')&&isequal(ParamOut.WholeIndexRange,'on')
2509    MinIndex_i=get(handles.MinIndex_i,'Data');
2510    MinIndex_j=get(handles.MinIndex_j,'Data');
2511    MaxIndex_i=get(handles.MaxIndex_i,'Data');
2512    MaxIndex_j=get(handles.MaxIndex_j,'Data');
2513    set(handles.num_first_i,'String',num2str(MinIndex_i(1)))% set first as the min index (for the first line)
2514    set(handles.num_last_i,'String',num2str(MaxIndex_i(1)))% set last as the max index (for the first line)
2515    set(handles.num_incr_i,'String','1')
2516    set(handles.num_first_j,'String',num2str(MinIndex_j(1)))% set first as the min index (for the first line)
2517    set(handles.num_last_j,'String',num2str(MaxIndex_j(1)))% set last as the max index (for the first line)
2518    set(handles.num_incr_j,'String','1')
2519else  % check index ranges
2520    first_i=1;last_i=1;first_j=1;last_j=1;
2521    if isfield(Param.IndexRange,'first_i')
2522        first_i=Param.IndexRange.first_i;
2523        last_i=Param.IndexRange.last_i;
2524    end
2525    if isfield(Param.IndexRange,'first_j')
2526        first_j=Param.IndexRange.first_j;
2527        last_j=Param.IndexRange.last_j;
2528    end
2529    if last_i < first_i || last_j < first_j , msgbox_uvmat('ERROR','last field number must be larger than the first one'),...
2530            set(handles.RUN, 'Enable','On'), set(handles.RUN,'BackgroundColor',[1 0 0]),return,end;
2531end
2532
2533%% enable or desable j index visibility
2534status_j='on'; % default
2535if isempty(find(~cellfun(@isempty,SeriesData.j1_series), 1)); % case of empty j indices
2536    status_j='off'; % no j index needed
2537elseif strcmp(get(handles.PairString,'Visible'),'on')
2538    check_burst=cellfun(@isempty,regexp(get(handles.PairString,'Data'),'^j')); % =0 for burst case, 1 otherwise
2539    if isempty(find(check_burst, 1))% if all pair string begins by j (burst)
2540        status_j='off'; % no j index needed for bust case
2541    end
2542end
2543enable_j(handles,status_j) % no j index needed
2544if isfield(ParamOut,'j_index_1')&& isfield(ParamOut,'j_index_2')%strcmp(ParamOut.Desable_j_index,'on')
2545    %status_j='off';
2546    set(handles.num_first_j,'String',num2str(ParamOut.j_index_1))
2547    set(handles.num_last_j,'String',num2str(ParamOut.j_index_2))
2548    set(handles.num_first_j,'enable','off')
2549    set(handles.num_last_j,'enable','off')
2550    set(handles.num_incr_j,'visible','off')
2551else
2552    set(handles.num_first_j,'enable','on')
2553    set(handles.num_last_j,'enable','on')
2554    set(handles.num_incr_j,'visible',status_j)
2555end
2556
2557%% NbSlice visibility
2558if isfield(ParamOut,'NbSlice') && (strcmp(ParamOut.NbSlice,'on')||isnumeric(ParamOut.NbSlice))
2559    set(handles.num_NbSlice,'Visible','on')
2560    set(handles.NbSlice_title,'Visible','on')
2561else
2562    set(handles.num_NbSlice,'Visible','off')
2563    set(handles.NbSlice_title,'Visible','off')
2564end
2565if isfield(ParamOut,'NbSlice') && isnumeric(ParamOut.NbSlice)
2566    set(handles.num_NbSlice,'String',num2str(ParamOut.NbSlice))
2567    set(handles.num_NbSlice,'Enable','off'); % NbSlice set by the activation of the Action function
2568else
2569    set(handles.num_NbSlice,'Enable','on'); % NbSlice can be modified on the GUI series
2570end
2571
2572%% Visibility of FieldTransform menu
2573FieldTransformVisible='off';  %hidden by default
2574if isfield(ParamOut,'FieldTransform')
2575    if ~strcmp(ParamOut.FieldTransform,'off')
2576    FieldTransformVisible='on'; 
2577    end
2578    if iscell(ParamOut.FieldTransform)
2579        SeriesData.TransformList=ParamOut.FieldTransform;
2580    end
2581    TransformName_Callback([],[], handles)
2582end
2583set(handles.FieldTransform,'Visible',FieldTransformVisible)
2584if isfield(ParamOut,'TransformPath');% record the path of transform function requested for compilation
2585    set(handles.TransformPath,'UserData',ParamOut.TransformPath)
2586else
2587    set(handles.TransformPath,'UserData',[])
2588end
2589
2590%% Visibility of projection object
2591ProjObjectVisible='off';  %hidden by default
2592if isfield(ParamOut,'ProjObject')
2593    ProjObjectVisible=ParamOut.ProjObject;
2594end
2595set(handles.CheckObject,'Visible',ProjObjectVisible)
2596if ~get(handles.CheckObject,'Value')
2597    ProjObjectVisible='off';
2598end
2599set(handles.ProjObject,'Visible',ProjObjectVisible)
2600set(handles.DeleteObject,'Visible',ProjObjectVisible)
2601set(handles.ViewObject,'Visible',ProjObjectVisible)
2602set(handles.EditObject,'Visible',ProjObjectVisible)
2603
2604%% Visibility of mask input
2605MaskVisible='off';  %hidden by default
2606if isfield(ParamOut,'Mask')
2607    MaskVisible=ParamOut.Mask;
2608end
2609set(handles.CheckMask,'Visible',MaskVisible);
2610
2611%% definition of the directory containing the output files
2612if  ~(isfield(SeriesData,'ActionName') && strcmp(ActionName,SeriesData.ActionName))
2613    OutputDirExt='.series'; % default
2614    if isfield(ParamOut,'OutputDirExt')&&~isempty(ParamOut.OutputDirExt)
2615        OutputDirExt=ParamOut.OutputDirExt;
2616    end
2617    set(handles.OutputDirExt,'String',OutputDirExt)
2618end
2619OutputDirVisible='off';
2620OutputSubDirMode='auto'; % default
2621SubDirOut='';
2622if isfield(ParamOut,'OutputSubDirMode')
2623    OutputSubDirMode=ParamOut.OutputSubDirMode;
2624end
2625InputTable=get(handles.InputTable,'Data');
2626switch OutputSubDirMode
2627    case 'auto'; % default
2628        OutputDirVisible='on';
2629        SubDir=InputTable(1:end,2); % set of subdirectories
2630        SubDirOut=SubDir{1};
2631        if numel(SubDir)>1
2632            for ilist=2:numel(SubDir)
2633                SubDirOut=[SubDirOut '-' regexprep(SubDir{ilist},'^/','')];
2634            end
2635        end
2636    case 'one'
2637        OutputDirVisible='on';
2638        SubDirOut=InputTable{1,2}; % use the first subdir name (+OutputDirExt) as output  subdirectory
2639    case 'two'
2640        OutputDirVisible='on';   
2641        SubDir=InputTable(1:2,2); % set of subdirectories
2642        SubDirOut=SubDir{1};
2643        if numel(SubDir)>1
2644                SubDirOut=[SubDirOut '-' regexprep(SubDir{2},'^/','')];
2645        end
2646    case 'last'
2647        OutputDirVisible='on';
2648        SubDirOut=InputTable{end,2}; % use the last subdir name (+OutputDirExt) as output  subdirectory
2649end
2650set(handles.OutputSubDir,'String',SubDirOut)
2651set(handles.OutputSubDir,'BackgroundColor',[1 1 1])% set edit box to white color to indicate refreshment
2652set(handles.OutputDirExt,'Visible',OutputDirVisible)
2653set(handles.OutputSubDir,'Visible',OutputDirVisible)
2654%set(handles.CheckOverwrite,'Visible',OutputDirVisible)
2655set(handles.OutputDir_title,'Visible',OutputDirVisible)
2656SeriesData.ActionName=ActionName; % record ActionName for next use
2657
2658
2659%% visibility of the run mode (local or background or cluster)
2660if strcmp(OutputSubDirMode,'none')
2661    RunModeVisible='off'; % only local mode available if no output file is produced
2662else
2663    RunModeVisible='on';
2664end
2665set(handles.RunMode,'Visible',RunModeVisible)
2666set(handles.ActionExt,'Visible',RunModeVisible)
2667set(handles.RunMode_title,'Visible',RunModeVisible)
2668set(handles.ActionExt_title,'Visible',RunModeVisible)
2669
2670
2671%% Expected nbre of output files
2672if isfield(ParamOut,'OutputFileMode')
2673    StatusData.OutputFileMode=ParamOut.OutputFileMode;
2674    set(handles.status,'UserData',StatusData)
2675end
2676
2677%% definition of an additional parameter set, determined by an ancillary GUI
2678if isfield(ParamOut,'ActionInput')
2679%     set(handles.ActionInput,'Visible','on')
2680    ParamOut.ActionInput.Program=ActionName; % record the program in ActionInput
2681    SeriesData.ActionInput=ParamOut.ActionInput;
2682else
2683%     set(handles.ActionInput,'Visible','off')
2684    if isfield(SeriesData,'ActionInput')
2685        SeriesData=rmfield(SeriesData,'ActionInput');
2686    end
2687end
2688set(handles.series,'UserData',SeriesData)
2689set(handles.ActionInput,'BackgroundColor',[1 0 0])
2690
2691%------------------------------------------------------------------------
2692% --- Executes on selection change in FieldName.
2693function FieldName_Callback(hObject, eventdata, handles)
2694%------------------------------------------------------------------------
2695field_str=get(handles.FieldName,'String');
2696field_index=get(handles.FieldName,'Value');
2697field=field_str{field_index(1)};
2698if isequal(field,'get_field...')
2699    SeriesData=get(handles.series,'UserData');
2700    % input line for which the field choice is relevant
2701    iview=find(ismember(SeriesData.FileType,{'netcdf','civx','civdata'})); % all nc files, icluding civ
2702    hget_field=findobj(allchild(0),'name','get_field');
2703    if ~isempty(hget_field)
2704        delete(hget_field)%delete opened versions of get_field
2705    end
2706    Param=read_GUI(handles.series);
2707    InputTable=Param.InputTable(iview,:);
2708    % check the existence of the first file in the series
2709    first_j=[];last_j=[];MinIndex_j=1;MaxIndex_j=1; % default setting for index j
2710    if isfield(Param.IndexRange,'first_j'); % if index j is used     
2711        first_j=Param.IndexRange.first_j;
2712        last_j=Param.IndexRange.last_j;
2713        MinIndex_j=Param.IndexRange.MinIndex_j(iview);
2714        MaxIndex_j=Param.IndexRange.MaxIndex_j(iview);
2715    end
2716    PairString='';
2717    if isfield(Param.IndexRange,'PairString'); PairString=Param.IndexRange.PairString{iview}; end
2718    [i1,i2,j1,j2] = get_file_index(Param.IndexRange.first_i,first_j,PairString);
2719    LineIndex=iview(1);
2720    if numel(iview)>1     
2721        answer=msgbox_uvmat('INPUT_TXT',['select the line of the input table:' num2str(iview)] ,num2str(iview(1)));
2722        LineIndex=str2num(answer);
2723%         InputLine=str2num(get(handles.InputLine,'String'));
2724%         if ismember(InputLine,iview)
2725%             LineIndex=InputLine;
2726%         end
2727    end
2728    FirstFileName=fullfile_uvmat(InputTable{LineIndex,1},InputTable{LineIndex,2},InputTable{LineIndex,3},...
2729        InputTable{LineIndex,5},InputTable{LineIndex,4},i1,i2,j1,j2);
2730    if exist(FirstFileName,'file')
2731        ParamIn.Title='get_field: pick input variables and coordinates for series processing';
2732        ParamIn.SeriesInput=1;
2733        GetFieldData=get_field(FirstFileName,ParamIn);
2734        FieldList={};
2735        if isfield(GetFieldData,'FieldOption')% if a field has been selected
2736        switch GetFieldData.FieldOption
2737            case 'vectors'
2738                UName=GetFieldData.PanelVectors.vector_x;
2739                VName=GetFieldData.PanelVectors.vector_y;
2740                YName={GetFieldData.Coordinates.Coord_y};
2741                FieldList={['vec(' UName ',' VName ')'];...
2742                    ['norm(' UName ',' VName ')'];...
2743                    UName;VName};
2744            case {'scalar'}
2745                FieldList=GetFieldData.PanelScalar.scalar;
2746                YName={GetFieldData.Coordinates.Coord_y};
2747                if ischar(FieldList)
2748                    FieldList={FieldList};
2749                end
2750            case 'civdata...'
2751                FieldList=[set_field_list('U','V') ;{'C'}];
2752                set(handles.FieldName,'Value',1) % set menu to 'velocity
2753                XName='X';
2754                YName='y';
2755        end
2756        set(handles.FieldName,'Value',1)
2757        set(handles.FieldName,'String',[FieldList; {'get_field...'}]);
2758        if ~strcmp(GetFieldData.FieldOption,'civdata...')
2759           if ~isempty(regexp(FieldList{1},'^vec'))
2760                set(handles.FieldName,'Value',1)
2761           else
2762                set(handles.FieldName,'Value',1:numel(FieldList))%select all input fields by default
2763           end
2764            XName=GetFieldData.Coordinates.Coord_x;
2765            YName=GetFieldData.Coordinates.Coord_y;
2766            TimeNameStr=GetFieldData.Time.SwitchVarIndexTime;
2767            % get the time info                     
2768            TimeTable=get(handles.TimeTable,'Data');
2769            switch TimeNameStr
2770                case 'file index'
2771                    TimeName='';
2772                case 'attribute'
2773                    TimeName=['att:' GetFieldData.Time.TimeName];
2774                    % update the time table
2775                    TimeTable{LineIndex,2}=get_time(Param.IndexRange.MinIndex_i(LineIndex),MinIndex_j,PairString,InputTable,SeriesData.FileInfo{LineIndex},GetFieldData.Time.TimeName);  % Min time     
2776                    TimeTable{LineIndex,3}=get_time(Param.IndexRange.first_i,first_j,PairString,InputTable,SeriesData.FileInfo{LineIndex},GetFieldData.Time.TimeName);  % first time             
2777                    TimeTable{LineIndex,4}=get_time(Param.IndexRange.last_i,last_j,PairString,InputTable,SeriesData.FileInfo{LineIndex},GetFieldData.Time.TimeName);  % last time                     
2778                    TimeTable{LineIndex,5}=get_time(Param.IndexRange.MaxIndex_i(LineIndex),MaxIndex_j,PairString,InputTable,SeriesData.FileInfo{LineIndex},GetFieldData.Time.TimeName);  % Max time
2779                case 'variable'
2780                    set(handles.TimeName,'String',['var:' GetFieldData.Time.TimeName])
2781                    set(handles.NomType,'String','*')
2782                    set(handles.RootFile,'String',[get(handles.RootFile,'String') get(handles.FileIndex,'String')])% A VERIFIER !!!!!!
2783                    set(handles.FileIndex,'String','')
2784                    ParamIn.TimeVarName=GetFieldData.Time.TimeName;
2785                case 'matrix_index'
2786                    TimeName=['dim:' GetFieldData.Time.TimeName];
2787                    set(handles.NomType,'String','*')
2788                    set(handles.RootFile,'String',[get(handles.RootFile,'String') get(handles.FileIndex,'String')])
2789                    set(handles.FileIndex,'String','')
2790                    ParamIn.TimeDimName=GetFieldData.Time.TimeName;
2791            end
2792            TimeTable{LineIndex,1}=TimeName;
2793            set(handles.TimeTable,'Data',TimeTable);
2794        end
2795        set(handles.Coord_x,'String',XName)
2796        set(handles.Coord_y,'String',YName)
2797        set(handles.Coord_x,'Visible','on')
2798        set(handles.Coord_y,'Visible','on')
2799        end
2800    else
2801        msgbox_uvmat('ERROR',[FirstFileName ' does not exist'])
2802    end
2803end
2804
2805
2806function [TimeValue,DtValue]=get_time(ref_i,ref_j,PairString,InputTable,FileInfo,TimeName,DtName)
2807[i1,i2,j1,j2] = get_file_index(ref_i,ref_j,PairString);
2808FileName=fullfile_uvmat(InputTable{1},InputTable{2},InputTable{3},InputTable{5},InputTable{4},i1,i2,j1,j2);
2809Data=nc2struct(FileName,[]);
2810TimeValue=[];
2811DtValue=[];
2812if isequal(FileInfo.FileType,'civdata')
2813    if ismember(TimeName,{'civ1','filter1'})
2814        if isfield(Data,'Civ1_Time')
2815        TimeValue=Data.Civ1_Time;
2816        end
2817        if isfield(Data,'Civ1_Dt')
2818        DtValue=Data.Civ1_Dt;
2819        end
2820    else
2821        if isfield(Data,'Civ2_Time')
2822        TimeValue=Data.Civ2_Time;
2823        end
2824        if isfield(Data,'Civ2_Dt')
2825        DtValue=Data.Civ2_Dt;
2826        end
2827    end
2828else
2829    if ~isempty(TimeName)&& isfield(Data,TimeName)
2830        TimeValue=Data.(TimeName);
2831    end
2832    if exist('DtName','var') && isfield(Data,DtName)
2833        DtValue=Data.(DtName);
2834    end
2835end
2836
2837%------------------------------------------------------------------------
2838% --- Executes on selection change in FieldName_1.
2839function FieldName_1_Callback(hObject, eventdata, handles)
2840%------------------------------------------------------------------------
2841field_str=get(handles.FieldName_1,'String');
2842field_index=get(handles.FieldName_1,'Value');
2843field=field_str{field_index(1)};
2844if isequal(field,'get_field...')
2845    hget_field=findobj(allchild(0),'name','get_field');
2846    if ~isempty(hget_field)
2847        delete(hget_field)%delete opened versions of get_field
2848    end
2849    Param=read_GUI(handles.series);
2850    Param.InputTable=Param.InputTable(1,:);
2851    % check the existence of the first file in the series
2852    first_j=[];
2853    if isfield(Param.IndexRange,'first_j'); first_j=Param.IndexRange.first_j; end
2854    if isfield(Param.IndexRange,'last_j'); last_j=Param.IndexRange.last_j; end
2855    PairString='';
2856    if isfield(Param.IndexRange,'PairString'); PairString=Param.IndexRange.PairString; end
2857    [i1,i2,j1,j2] = get_file_index(Param.IndexRange.first_i,first_j,PairString);
2858    FirstFileName=fullfile_uvmat(Param.InputTable{1,1},Param.InputTable{1,2},Param.InputTable{1,3},...
2859        Param.InputTable{1,5},Param.InputTable{1,4},i1,i2,j1,j2);
2860    if exist(FirstFileName,'file')
2861        ParamIn.SeriesInput=1;
2862        GetFieldData=get_field(FirstFileName,ParamIn);
2863        FieldList={};
2864        switch GetFieldData.FieldOption
2865            case 'vectors'
2866                UName=GetFieldData.PanelVectors.vector_x;
2867                VName=GetFieldData.PanelVectors.vector_y;
2868                FieldList={['vec(' UName ',' VName ')'];...
2869                    ['norm(' UName ',' VName ')'];...
2870                    UName;VName};
2871            case {'scalar','pick variables'}
2872                FieldList=GetFieldData.PanelScalar.scalar;
2873                if ischar(FieldList)
2874                    FieldList={FieldList};
2875                end
2876            case '1D plot'
2877
2878            case 'civdata...'
2879                FieldList=set_field_list('U','V','C');
2880                set(handles.FieldName,'Value',2) % set menu to 'velocity
2881        end
2882        if ~strcmp(GetFieldData.FieldOption,'civdata...')
2883            TimeNameStr=GetFieldData.Time.SwitchVarIndexTime;
2884            switch TimeNameStr
2885                case 'file index'
2886                    set(handles.TimeName,'String','');
2887                case 'attribute'
2888                    set(handles.TimeName,'String',['att:' GetFieldData.Time.TimeName]);
2889                case 'variable'
2890                    set(handles.TimeName,'String',['var:' GetFieldData.Time.TimeName])
2891                    set(handles.NomType,'String','*')
2892                    set(handles.RootFile,'String',[get(handles.RootFile,'String') get(handles.FileIndex,'String')])% A VERIFIER !!!!!!
2893                    set(handles.FileIndex,'String','')
2894                    ParamIn.TimeVarName=GetFieldData.Time.TimeName;
2895                case 'matrix_index'
2896                    set(handles.TimeName,'String',['dim:' GetFieldData.Time.TimeName]);
2897                    set(handles.NomType,'String','*')
2898                    set(handles.RootFile,'String',[get(handles.RootFile,'String') get(handles.FileIndex,'String')])
2899                    set(handles.FileIndex,'String','')
2900                    ParamIn.TimeDimName=GetFieldData.Time.TimeName;
2901            end
2902        end
2903        set(handles.FieldName_1,'Value',1)
2904        set(handles.FieldName_1,'String',[FieldList; {'get_field...'}]);
2905    end
2906end   
2907
2908
2909%%%%%%%%%%%%%
2910function [ind_remove]=find_pairs(dirpair,ind_i,last_i)
2911indsel=ind_i;
2912indiff=diff(ind_i); % test index increment to detect multiplets (several pairs with the same index ind_i) and holes in the series
2913indiff=[1 indiff last_i-ind_i(end)+1]; % for testing gaps with the imposed bounds
2914if ~isempty(indiff)
2915    indiff2=diff(indiff);
2916    indiffp=[indiff2 1];
2917    indiffm=[1 indiff2];
2918    ind_multi_m=find((indiff==0)&(indiffm<0))-1; % indices of first members of multiplets
2919    ind_multi_p=find((indiff==0)&(indiffp>0)); % indices of last members of multiplets
2920    %for each multiplet, select the most recent file
2921    ind_remove=[];
2922    for i=1:length(ind_multi_m)
2923        ind_pairs=ind_multi_m(i):ind_multi_p(i);
2924        for imulti=1:length(ind_pairs)
2925            datepair(imulti)=datenum(dirpair(ind_pairs(imulti)).date); % dates of creation
2926        end
2927        [datenew,indsort2]=sort(datepair); % sort the multiplet by creation date
2928        ind_s=indsort2(1:end-1); %
2929        ind_remove=[ind_remove ind_pairs(ind_s)]; % remove these indices, leave the last one
2930    end
2931end
2932
2933%------------------------------------------------------------------------
2934% --- determine the list of index pairstring of processing file
2935function [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)
2936%------------------------------------------------------------------------
2937num_i1=num_i; % set of first image numbers by default
2938num_i2=num_i;
2939num_j1=num_j;
2940num_j2=num_j;
2941num_i_out=num_i;
2942num_j_out=num_j;
2943% if isequal (NomType,'_1-2_1') || isequal (NomType,'_1-2')
2944if isequal(mode,'series(Di)')
2945    num_i1_line=num_i+ind_shift(3); % set of first image numbers
2946    num_i2_line=num_i+ind_shift(4);
2947    % adjust the first and last field number
2948        indsel=find(num_i1_line >= 1);
2949    num_i_out=num_i(indsel);
2950    num_i1_line=num_i1_line(indsel);
2951    num_i2_line=num_i2_line(indsel);
2952    num_j1=meshgrid(num_j,ones(size(num_i1_line)));
2953    num_j2=meshgrid(num_j,ones(size(num_i1_line)));
2954    [xx,num_i1]=meshgrid(num_j,num_i1_line);
2955    [xx,num_i2]=meshgrid(num_j,num_i2_line);
2956elseif isequal (mode,'series(Dj)')||isequal (mode,'bursts')
2957    if isequal(mode,'bursts') %case of bursts (png_old or png_2D)
2958        num_j1=ind_shift(1)*ones(size(num_i));
2959        num_j2=ind_shift(2)*ones(size(num_i));
2960    else
2961        num_j1_col=num_j+ind_shift(1); % set of first image numbers
2962        num_j2_col=num_j+ind_shift(2);
2963        % adjust the first field number
2964        indsel=find((num_j1_col >= 1));   
2965        num_j_out=num_j(indsel);
2966        num_j1_col=num_j1_col(indsel);
2967        num_j2_col=num_j2_col(indsel);
2968        [num_i1,num_j1]=meshgrid(num_i,num_j1_col);
2969        [num_i2,num_j2]=meshgrid(num_i,num_j2_col);
2970    end   
2971end
2972
2973%------------------------------------------------------------------------
2974% --- Executes on button press in CheckObject.
2975function CheckObject_Callback(hObject, eventdata, handles)
2976%------------------------------------------------------------------------
2977hset_object=findobj(allchild(0),'tag','set_object'); % find the set_object interface handle
2978if get(handles.CheckObject,'Value')
2979    SeriesData=get(handles.series,'UserData');
2980    if isfield(SeriesData,'ProjObject') && ~isempty(SeriesData.ProjObject)
2981        set(handles.ViewObject,'Value',1)
2982        ViewObject_Callback(hObject, eventdata, handles)
2983    else
2984        if ishandle(hset_object)
2985            uistack(hset_object,'top')% show the GUI set_object if opened
2986        else
2987            %get the object file
2988            InputTable=get(handles.InputTable,'Data');
2989            defaultname=InputTable{1,1};
2990            if isempty(defaultname)
2991                defaultname={''};
2992            end
2993            fileinput=uigetfile_uvmat('pick a xml object file (or use uvmat to create it)',defaultname,'.xml');
2994            if isempty(fileinput)% exit if no object file is selected
2995                set(handles.CheckObject,'Value',0)
2996                return
2997            end
2998            %read the file
2999            data=xml2struct(fileinput);
3000            if ~isfield(data,'Type')
3001                msgbox_uvmat('ERROR',[fileinput ' is not an object xml file'])
3002                set(handles.CheckObject,'Value',0)
3003                return
3004            end
3005            if ~isfield(data,'ProjMode')
3006                data.ProjMode='none';
3007            end
3008            hset_object=set_object(data); % call the set_object interface
3009            set(hset_object,'Name','set_object_series')% name to distinguish from set_object used with uvmat
3010        end
3011        ProjObject=read_GUI(hset_object);
3012        set(handles.ProjObject,'String',ProjObject.Name); % display the object name
3013        SeriesData=get(handles.series,'UserData');
3014        SeriesData.ProjObject=ProjObject;
3015        set(handles.series,'UserData',SeriesData);
3016    end
3017    set(handles.EditObject,'Visible','on');
3018    set(handles.DeleteObject,'Visible','on');
3019    set(handles.ViewObject,'Visible','on');
3020    set(handles.ProjObject,'Visible','on');
3021else
3022    set(handles.EditObject,'Visible','off');
3023    set(handles.DeleteObject,'Visible','off');
3024    set(handles.ViewObject,'Visible','off');
3025    if ~ishandle(hset_object)
3026        set(handles.ViewObject,'Value',0);
3027    end
3028    set(handles.ProjObject,'Visible','off');
3029end
3030
3031%------------------------------------------------------------------------
3032% --- Executes on button press in ViewObject.
3033%------------------------------------------------------------------------
3034function ViewObject_Callback(hObject, eventdata, handles)
3035
3036UserData=get(handles.series,'UserData');
3037hset_object=findobj(allchild(0),'Tag','set_object');
3038if ~isempty(hset_object)
3039    delete(hset_object)% refresh set_object if already opened
3040end
3041hset_object=set_object(UserData.ProjObject);
3042set(hset_object,'Name','view_object_series')
3043
3044
3045%------------------------------------------------------------------------
3046% --- Executes on button press in EditObject.
3047function EditObject_Callback(hObject, eventdata, handles)
3048%------------------------------------------------------------------------
3049if get(handles.EditObject,'Value')
3050    set(handles.ViewObject,'Value',0)
3051    UserData=get(handles.series,'UserData');
3052    hset_object=set_object(UserData.ProjObject);
3053    set(hset_object,'Name','edit_object_series')
3054    set(get(hset_object,'Children'),'Enable','on')
3055else
3056    hset_object=findobj(allchild(0),'Tag','set_object');
3057    if ~isempty(hset_object)
3058        set(get(hset_object,'Children'),'Enable','off')
3059    end
3060end
3061
3062%------------------------------------------------------------------------
3063% --- Executes on button press in DeleteObject.
3064function DeleteObject_Callback(hObject, eventdata, handles)
3065%------------------------------------------------------------------------
3066SeriesData=get(handles.series,'UserData');
3067SeriesData.ProjObject=[];
3068set(handles.series,'UserData',SeriesData)
3069set(handles.ProjObject,'String','')
3070set(handles.ProjObject,'Visible','off')
3071set(handles.CheckObject,'Value',0)
3072set(handles.ViewObject,'Visible','off')
3073set(handles.EditObject,'Visible','off')
3074hset_object=findobj(allchild(0),'name','set_object_series');
3075if ~isempty(hset_object)
3076    delete(hset_object)
3077end
3078set(handles.DeleteObject,'Visible','off')
3079
3080%------------------------------------------------------------------------
3081% --- Executed when CheckMask is activated
3082%------------------------------------------------------------------------
3083function CheckMask_Callback(hObject, eventdata, handles)
3084
3085if get(handles.CheckMask,'Value')
3086    InputTable=get(handles.InputTable,'Data');
3087    nbview=size(InputTable,1);
3088    MaskTable=cell(nbview,1); % default
3089    ListMask=cell(nbview,1); % default
3090    MaskData=get(handles.MaskTable,'Data');
3091    MaskData(size(MaskData,1):nbview,1)=cell(size(MaskData,1):nbview,1); % complement if undefined lines
3092    for iview=1:nbview
3093        ListMask{iview,1}=num2str(iview);
3094        RootPath=InputTable{iview,1};
3095        if ~isempty(RootPath)
3096            if isempty(MaskData{iview})
3097                SubDir=InputTable{iview,2};
3098                MaskPath=fullfile(RootPath,[regexprep(SubDir,'\..*','') '.mask']); % take the root part of SubDir, before the first dot '.'
3099                if exist(MaskPath,'dir')
3100                    ListStruct=dir(MaskPath); % look for a mask file
3101                    ListCells=struct2cell(ListStruct); % transform dir struct to a cell arrray
3102                    check_dir=cell2mat(ListCells(4,:)); % =1 for directories, =0 for files
3103                    ListFiles=ListCells(1,:); % list of file and dri names
3104                    ListFiles=ListFiles(~check_dir); % list of file names (excluding dir)
3105                    mdetect=0;
3106                    if ~isempty(ListFiles)
3107                        for ifile=1:numel(ListFiles)
3108                            [tild,tild,MaskFile{ifile},i1_series,i2_series,j1_series,j2_series,MaskNomType,MaskFileType]=find_file_series(MaskPath,ListFiles{ifile},0);
3109                            if strcmp(MaskFileType,'image') && isempty(i2_series) && isempty(j2_series)
3110                                mdetect=1;
3111                                MaskName=ListFiles{ifile};
3112                            end
3113                            if ~strcmp(MaskFile{ifile},MaskFile{1})
3114                                mdetect=0; % cancel detection test in case of multiple masks, use the brower for selection
3115                                break
3116                            end
3117                        end
3118                    end
3119                    if mdetect==1
3120                        MaskName=fullfile(MaskPath,'mask_1.png');
3121                    else
3122                        MaskName=uigetfile_uvmat('select a mask file:',MaskPath,'image');
3123                    end
3124                else
3125                    MaskName=uigetfile_uvmat('select a mask file:',RootPath,'image');
3126                end
3127                MaskTable{iview,1}=MaskName ;
3128                ListMask{iview,1}=num2str(iview);
3129            end
3130        end
3131    end
3132    set(handles.MaskTable,'Data',MaskTable)
3133    set(handles.MaskTable,'Visible','on')
3134    set(handles.MaskBrowse,'Visible','on')
3135    set(handles.ListMask,'Visible','on')
3136    set(handles.ListMask,'String',ListMask)
3137    set(handles.ListMask,'Value',1)
3138else
3139    set(handles.MaskTable,'Visible','off')
3140    set(handles.MaskBrowse,'Visible','off')
3141    set(handles.ListMask,'Visible','off')
3142end
3143
3144%------------------------------------------------------------------------
3145% --- Executes on button press in MaskBrowse.
3146%------------------------------------------------------------------------
3147function MaskBrowse_Callback(hObject, eventdata, handles)
3148
3149InputTable=get(handles.InputTable,'Data');
3150iview=get(handles.ListMask,'Value');
3151RootPath=InputTable{iview,1};
3152MaskName=uigetfile_uvmat('select a mask file:',RootPath,'image');
3153if ~isempty(MaskName)
3154    MaskTable=get(handles.MaskTable,'Data');
3155    MaskTable{iview,1}=MaskName ;
3156    set(handles.MaskTable,'Data',MaskTable)
3157end
3158
3159%------------------------------------------------------------------------
3160% --- Executes when selected cell(s) is changed in MaskTable.
3161%------------------------------------------------------------------------
3162function MaskTable_CellSelectionCallback(hObject, eventdata, handles)
3163
3164if numel(eventdata.Indices)>=1
3165set(handles.ListMask,'Value',eventdata.Indices(1))
3166end
3167
3168%-------------------------------------------------------------------
3169function MenuHelp_Callback(hObject, eventdata, handles)
3170%-------------------------------------------------------------------
3171
3172
3173% path_to_uvmat=which ('uvmat'); % check the path of uvmat
3174% pathelp=fileparts(path_to_uvmat);
3175% helpfile=fullfile(pathelp,'uvmat_doc','uvmat_doc.html');
3176% 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')
3177% else
3178%     addpath (fullfile(pathelp,'uvmat_doc'))
3179%     web([helpfile '#series'])
3180% end
3181
3182%-------------------------------------------------------------------
3183% --- Executes on selection change in TransformName.
3184function TransformName_Callback(hObject, eventdata, handles)
3185%----------------------------------------------------------------------
3186TransformList=get(handles.TransformName,'String');
3187TransformIndex=get(handles.TransformName,'Value');
3188TransformName=TransformList{TransformIndex};
3189TransformPathList=get(handles.TransformName,'UserData');
3190nb_builtin_transform=4;
3191if isequal(TransformName,'more...');     
3192    FileName=uigetfile_uvmat('Pick a transform function',get(handles.TransformPath,'String'),'.m');
3193    if isempty(FileName)
3194        return     %browser closed without choice
3195    end
3196    [TransformPath,TransformName,TransformExt]=fileparts(FileName); % removes extension .m
3197    if ~strcmp(TransformExt,'.m')
3198        msgbox_uvmat('ERROR','a Matlab function .m must be introduced');
3199        return
3200    end
3201     % insert the choice in the menu
3202    TransformIndex=find(strcmp(TransformName,TransformList),1); % look for the selected function in the menu Action
3203    if isempty(TransformIndex)%the input string does not exist in the menu
3204        TransformIndex= length(TransformList);
3205        TransformList=[TransformList(1:end-1);{TransformName};TransformList(end)]; % the selected function is appended in the menu, before the last item 'more...'
3206        set(handles.TransformName,'String',TransformList)
3207        TransformPathList=[TransformPathList;{TransformPath}];
3208    else% the input function already exist, we update its path (possibly new)
3209        TransformPathList{TransformIndex}=TransformPath; %
3210        set(handles.TransformName,'Value',TransformIndex)
3211    end
3212   % save the new menu in the personal file 'uvmat_perso.mat'
3213   dir_perso=prefdir; % personal Matalb directory
3214   profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
3215   if exist(profil_perso,'file')
3216       for ilist=nb_builtin_transform+1:numel(TransformPathList)
3217           TransformListUser{ilist-nb_builtin_transform}=TransformList{ilist};
3218           TransformPathListUser{ilist-nb_builtin_transform}=TransformPathList{ilist};
3219       end
3220       TransformPathListUser=TransformPathListUser';
3221       TransformListUser=TransformListUser';
3222       save (profil_perso,'TransformPathListUser','TransformListUser','-append'); % store the root name for future opening of uvmat
3223   end
3224end
3225
3226%display the current function path
3227set(handles.TransformPath,'String',TransformPathList{TransformIndex}); % show the path to the senlected function
3228set(handles.TransformName,'UserData',TransformPathList);
3229
3230%% create the function handle of the selected fct
3231if ~isempty(TransformName)
3232    if ~exist(TransformPathList{TransformIndex},'dir')
3233        msgbox_uvmat('ERROR',['The prescribed transform function path ' TransformPathList{TransformIndex} ' does not exist']);
3234        return
3235    end
3236    current_dir=pwd; % current working dir
3237    cd(TransformPathList{TransformIndex})
3238    transform_handle=str2func(TransformName);
3239    cd(current_dir)
3240    Field.Action.RUN=0;% indicate that the transform fct is called only to get input param
3241    SeriesData=get(handles.series,'UserData');
3242    ParamIn=[];
3243    if isfield(SeriesData,'TransformInput')
3244        ParamIn.TransformInput=SeriesData.TransformInput;
3245    end
3246    DataOut=feval(transform_handle,Field,ParamIn);% execute the transform fct to get the required conditions
3247    Field.Action.RUN=0; % indicate that the transform fct is called only to get input param
3248    DataOut=feval(transform_handle,Field,[]); % execute the transform fct to get the required conditions
3249    if isfield(DataOut,'TransformInput')%  used to add transform parameters at selection of the transform fct
3250        SeriesData.TransformInput=DataOut.TransformInput;
3251        set(handles.series,'UserData',SeriesData)
3252    end
3253end
3254
3255%------------------------------------------------------------------------
3256% --- fct activated by the upper bar menu ExportConfig
3257%------------------------------------------------------------------------
3258function MenuDisplayConfig_Callback(hObject, eventdata, handles)
3259
3260global Param
3261Param=read_GUI_series(handles);
3262evalin('base','global Param')%make CurData global in the workspace
3263display('current series config :')
3264evalin('base','Param') %display CurData in the workspace
3265commandwindow; % brings the Matlab command window to the front
3266
3267%------------------------------------------------------------------------
3268% --- fct activated by the upper bar menu InportConfig: import
3269%     menu settings from an xml file (stored in /0_XML for each run)
3270%------------------------------------------------------------------------
3271function MenuImportConfig_Callback(hObject, eventdata, handles)
3272
3273%% use a browser to choose the xml file containing the processing config
3274InputTable=get(handles.InputTable,'Data');
3275oldfile=InputTable{1,1}; % current path in InputTable
3276if isempty(oldfile)
3277    % use a file name stored in prefdir
3278    dir_perso=prefdir;
3279    profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
3280    if exist(profil_perso,'file')
3281        h=load (profil_perso);
3282        if isfield(h,'RootPath') && ischar(h.RootPath)
3283            oldfile=h.RootPath;
3284        end
3285    end
3286end
3287filexml=uigetfile_uvmat('pick a xml parameter file',oldfile,'.xml'); % get the xml file containing processing parameters
3288if isempty(filexml), return, end % quit function if an xml file has not been opened
3289
3290%% fill the GUI series with the content of the xml file
3291Param=xml2struct(filexml); % read the input xml file as a Matlab structure
3292
3293% ask to stop current Action if button RUN is in action (another process is already running)
3294if isequal(get(handles.RUN,'Value'),1)
3295    answer= msgbox_uvmat('INPUT_Y-N','stop current Action process?');
3296    if strcmp(answer,'Yes')
3297        STOP_Callback(hObject, eventdata, handles)
3298    else
3299        return
3300    end
3301end
3302Param.Action.RUN=0; % desactivate the input RUN=1
3303
3304fill_GUI(Param,handles.series)% fill the elements of the GUI series with the input parameters
3305SeriesData=get(handles.series,'UserData');
3306if isfield(Param,'InputFields')
3307    ListField=Param.InputFields.FieldName;
3308    if ischar(ListField),ListField={ListField}; end
3309    set(handles.FieldName,'String',[ListField;{'get-field...'}])
3310     set(handles.FieldName,'Value',1:numel(ListField))
3311     set(handles.FieldName,'Visible','on')
3312end       
3313if isfield(Param,'ActionInput')%  introduce  parameters specific to an Action fct, for instance PIV parameters
3314%     set(handles.ActionInput,'Visible','on')
3315%     set(handles.ActionInput,'Value',0)
3316    Param.ActionInput.ConfigSource=filexml; % record the source of config for future info
3317    SeriesData.ActionInput=Param.ActionInput;
3318end
3319if isfield(Param,'TransformInput')%  introduce  parameters specific to a transform fct
3320    SeriesData.TransformInput=Param.TransformInput;
3321end
3322if isfield(Param,'ProjObject') %introduce projection object if relevant
3323    SeriesData.ProjObject=Param.ProjObject;
3324end
3325set(handles.series,'UserData',SeriesData)
3326if isfield(Param,'CheckObject') && isequal(Param.CheckObject,1)
3327    set(handles.ProjObject,'String',Param.ProjObject.Name)
3328    set(handles.ViewObject,'Visible','on')
3329    set(handles.EditObject,'Visible','on')
3330    set(handles.DeleteObject,'Visible','on')
3331else     
3332    set(handles.ProjObject,'String','')
3333    set(handles.ProjObject,'Visible','off')
3334    set(handles.ViewObject,'Visible','off')
3335    set(handles.EditObject,'Visible','off')
3336    set(handles.DeleteObject,'Visible','off')     
3337end     
3338set(handles.REFRESH,'BackgroundColor',[1 0 1]); % paint REFRESH button in magenta to indicate that it should be activated
3339
3340
3341%------------------------------------------------------------------------
3342% --- Executes when the GUI series is resized.
3343%------------------------------------------------------------------------
3344function series_ResizeFcn(hObject, eventdata, handles)
3345
3346%% input table
3347set(handles.InputTable,'Unit','pixel')
3348Pos=get(handles.InputTable,'Position');
3349set(handles.InputTable,'Unit','normalized')
3350ColumnWidth=round([0.5 0.14 0.14 0.14 0.08]*(Pos(3)-52));
3351ColumnWidth=num2cell(ColumnWidth);
3352set(handles.InputTable,'ColumnWidth',ColumnWidth)
3353
3354%% MinIndex_j and MaxIndex_i
3355unit=get(handles.MinIndex_i,'Unit');
3356set(handles.MinIndex_i,'Unit','pixel')
3357Pos=get(handles.MinIndex_i,'Position');
3358set(handles.MinIndex_i,'Unit',unit)
3359set(handles.MinIndex_i,'ColumnWidth',{Pos(3)-18})
3360set(handles.MaxIndex_i,'ColumnWidth',{Pos(3)-18})
3361set(handles.MinIndex_j,'ColumnWidth',{Pos(3)-18})
3362set(handles.MaxIndex_j,'ColumnWidth',{Pos(3)-18})
3363
3364%% TimeTable
3365set(handles.TimeTable,'Unit','pixel')
3366Pos=get(handles.TimeTable,'Position');
3367set(handles.TimeTable,'Unit','normalized')
3368% ColumnWidth=get(handles.TimeTable,'ColumnWidth');
3369ColumnWidth=num2cell(floor([0.2 0.2 0.2 0.2 0.2]*(Pos(3)-20)));
3370set(handles.TimeTable,'ColumnWidth',ColumnWidth)
3371
3372
3373%% PairString
3374set(handles.PairString,'Unit','pixel')
3375Pos=get(handles.PairString,'Position');
3376set(handles.PairString,'Unit','normalized')
3377set(handles.PairString,'ColumnWidth',{Pos(3)-5})
3378
3379%% MaskTable
3380set(handles.MaskTable,'Unit','pixel')
3381Pos=get(handles.MaskTable,'Position');
3382set(handles.MaskTable,'Unit','normalized')
3383set(handles.MaskTable,'ColumnWidth',{Pos(3)-5})
3384
3385%------------------------------------------------------------------------
3386% --- Executes on button press in status.
3387%------------------------------------------------------------------------
3388function status_Callback(hObject, eventdata, handles)
3389
3390if get(handles.status,'Value')
3391    set(handles.status,'BackgroundColor',[1 1 0])
3392    drawnow
3393    Param=read_GUI(handles.series);
3394    RootPath=Param.InputTable{1,1};
3395    if ~isfield(Param,'OutputSubDir')   
3396        msgbox_uvmat('ERROR','no standard sub-directory definition for output files, use a browser to check the output')
3397        set(handles.status,'BackgroundColor',[0 1 0])
3398        return
3399    end
3400    OutputSubDir=[Param.OutputSubDir Param.OutputDirExt]; % subdirectory for output files
3401    OutputDir=fullfile(RootPath,OutputSubDir);
3402    if exist(OutputDir,'dir')
3403        uigetfile_uvmat('status_display',OutputDir)
3404    else
3405        msgbox_uvmat('ERROR','output folder not created yet: calculation did not start')
3406        set(handles.status,'BackgroundColor',[0 1 0])
3407    end
3408else
3409    %% delete current display fig if selection is off
3410    set(handles.status,'BackgroundColor',[0 1 0])
3411    hfig=findobj(allchild(0),'name','status_display');
3412    if ~isempty(hfig)
3413        delete(hfig)
3414    end
3415    return
3416end
3417
3418
3419%------------------------------------------------------------------------   
3420% launched by selecting a file on the list
3421%------------------------------------------------------------------------
3422function view_file(hObject, eventdata)
3423
3424list=get(hObject,'String');
3425index=get(hObject,'Value');
3426rootroot=get(hObject,'UserData');
3427selectname=list{index};
3428ind_dot=regexp(selectname,'\.\.\.');
3429if ~isempty(ind_dot)
3430    selectname=selectname(1:ind_dot-1);
3431end
3432FullSelectName=fullfile(rootroot,selectname);
3433if exist(FullSelectName,'dir')% a directory has been selected
3434    ListFiles=dir(FullSelectName);
3435    ListDisplay=cell(numel(ListFiles),1);
3436    for ilist=2:numel(ListDisplay)% suppress the first line '.'
3437        ListDisplay{ilist-1}=ListFiles(ilist).name;
3438    end
3439    set(hObject,'Value',1)
3440    set(hObject,'String',ListDisplay)
3441    if strcmp(selectname,'..')
3442        FullSelectName=fileparts(fileparts(FullSelectName));
3443    end
3444    set(hObject,'UserData',FullSelectName)
3445    hfig=get(hObject,'parent');
3446    htitlebox=findobj(hfig,'tag','titlebox');   
3447    set(htitlebox,'String',FullSelectName)
3448elseif exist(FullSelectName,'file')%visualise the vel field if it exists
3449    FileInfo=get_file_info(FullSelectName);   
3450    if strcmp(FileInfo.FileType,'txt')
3451        edit(FullSelectName)
3452    elseif strcmp(FileInfo.FileType,'xml')
3453        editxml(FullSelectName)
3454    else
3455        uvmat(FullSelectName)
3456    end
3457    set(gcbo,'Value',1)
3458end
3459
3460
3461%------------------------------------------------------------------------   
3462% launched by refreshing the status figure
3463%------------------------------------------------------------------------
3464function refresh_GUI(hfig)
3465
3466htitlebox=findobj(hfig,'tag','titlebox');
3467hlist=findobj(hfig,'tag','list');
3468hseries=findobj(allchild(0),'tag','series');
3469hstatus=findobj(hseries,'tag','status');
3470StatusData=get(hstatus,'UserData');
3471OutputDir=get(htitlebox,'String');
3472if ischar(OutputDir),OutputDir={OutputDir};end
3473ListFiles=dir(OutputDir{1});
3474if numel(ListFiles)<1
3475    return
3476end
3477ListFiles(1)=[]; % removes the first line ='.'
3478ListDisplay=cell(numel(ListFiles),1);
3479testrecent=0;
3480datnum=zeros(numel(ListDisplay),1);
3481for ilist=1:numel(ListDisplay)
3482    ListDisplay{ilist}=ListFiles(ilist).name;
3483      if ~ListFiles(ilist).isdir && isfield(ListFiles(ilist),'datenum')
3484            datnum(ilist)=ListFiles(ilist).datenum; % only available in recent matlab versions
3485            testrecent=1;
3486       end
3487end
3488set(hlist,'String',ListDisplay)
3489
3490%% Look at date of creation
3491ListDisplay=ListDisplay(datnum~=0);
3492datnum=datnum(datnum~=0); % keep the non zero values corresponding to existing files
3493NbOutputFile=[];
3494if isempty(datnum)
3495    if testrecent
3496        message='no civ result created yet';
3497    else
3498        message='';
3499    end
3500else
3501    [first,indfirst]=min(datnum);
3502    [last,indlast]=max(datnum);
3503    NbOutputFile_str='?';
3504    NbOutputFile=[];
3505    if isfield(StatusData,'NbOutputFile')
3506        NbOutputFile=StatusData.NbOutputFile;
3507        NbOutputFile_str=num2str(NbOutputFile);
3508    end
3509    message={[num2str(numel(datnum)) ' file(s) done over ' NbOutputFile_str] ;['oldest modification:  ' ListDisplay{indfirst} ' : ' datestr(first)];...
3510        ['latest modification:  ' ListDisplay{indlast} ' : ' datestr(last)]};
3511end
3512set(htitlebox,'String', [OutputDir{1};message])
3513
3514%% update the waitbar
3515hwaitbar=findobj(hfig,'tag','waitbar');
3516if ~isempty(NbOutputFile)
3517    BarPosition=get(hwaitbar,'Position');
3518    BarPosition(3)=0.9*numel(datnum)/NbOutputFile;
3519    set(hwaitbar,'Position',BarPosition)
3520end
3521
3522%------------------------------------------------------------------------
3523% --- Executes on selection change in ActionExt.
3524%------------------------------------------------------------------------
3525function ActionExt_Callback(hObject, eventdata, handles)
3526
3527ActionExtList=get(handles.ActionExt,'String');
3528ActionExt=ActionExtList{get(handles.ActionExt,'Value')};
3529if strcmp(ActionExt,'.py (in dev.)')
3530    set(handles.RunMode,'Value',2)
3531end
3532
3533%function num_NbProcess_Callback(hObject, eventdata, handles)
3534
3535
3536function num_NbSlice_Callback(hObject, eventdata, handles)
3537NbSlice=str2num(get(handles.num_NbSlice,'String'));
3538%set(handles.num_NbProcess,'String',num2str(NbSlice))
3539
3540%------------------------------------------------------------------------
3541% --- set the visibility of relevant velocity type menus:
3542function menu=set_veltype_display(Civ,FileType)
3543%------------------------------------------------------------------------
3544if ~exist('FileType','var')
3545    FileType='civx';
3546end
3547switch FileType
3548    case 'civx'
3549        menu={'civ1';'interp1';'filter1';'civ2';'interp2';'filter2'};
3550        if isequal(Civ,0)
3551            imax=0;
3552        elseif isequal(Civ,1) || isequal(Civ,2)
3553            imax=1;
3554        elseif isequal(Civ,3)
3555            imax=3;
3556        elseif isequal(Civ,4) || isequal(Civ,5)
3557            imax=4;
3558        elseif isequal(Civ,6) %patch2
3559            imax=6;
3560        end
3561    case 'civdata'
3562        menu={'civ1';'filter1';'civ2';'filter2'};
3563        if isequal(Civ,0)
3564            imax=0;
3565        elseif isequal(Civ,1) || isequal(Civ,2)
3566            imax=1;
3567        elseif isequal(Civ,3)
3568            imax=2;
3569        elseif isequal(Civ,4) || isequal(Civ,5)
3570            imax=3;
3571        else%if isequal(Civ,6) %patch2
3572            imax=4;
3573        end
3574end
3575menu=menu(1:imax);
3576
3577
3578% --- Executes on mouse motion over figure - except title and menu.
3579function series_WindowButtonMotionFcn(hObject, eventdata, handles)
3580set(hObject,'Pointer','arrow');
3581
3582
3583% --- Executes on button press in SetPairs.
3584function SetPairs_Callback(hObject, eventdata, handles)
3585
3586%% delete previous occurrence of 'set_pairs'
3587hfig=findobj(allchild(0),'Tag','set_pairs');
3588if ~isempty(hfig)
3589delete(hfig)
3590end
3591
3592%% create the GUI set_pairs
3593set(0,'Unit','points')
3594ScreenSize=get(0,'ScreenSize'); % get the size of the screen, to put the fig on the upper right
3595Width=220; % fig width in points (1/72 inch)
3596Height=min(0.8*ScreenSize(4),300);
3597Left=ScreenSize(3)- Width-40; % right edge close to the right, with margin=40
3598Bottom=ScreenSize(4)-Height-40; % put fig at top right
3599hfig=findobj(allchild(0),'Tag','set_slice');
3600if ~isempty(hfig),delete(hfig), end; % delete existing version of the GUI
3601hfig=figure('name','set_pairs','tag','set_pairs','MenuBar','none','NumberTitle','off','Unit','points','Position',[Left,Bottom,Width,Height]);
3602BackgroundColor=get(hfig,'Color');
3603SeriesData=get(handles.series,'UserData');
3604TimeUnit=get(handles.TimeUnit,'String');
3605PairString=get(handles.PairString,'Data');
3606ListViewLines=find(cellfun('isempty',PairString)==0); % find list of non empty pairs
3607ListViewMenu=cell(numel(ListViewLines),1);
3608iview=get(handles.PairString,'Value');
3609for ilist=1:numel(ListViewLines)
3610    ListViewMenu{ilist}=num2str(ListViewLines(ilist));
3611end
3612if isempty(iview)
3613    ListViewValue=numel(ListViewLines); % we work by default on the pair option for the last line which requires pairs
3614    iview=ListViewLines(end);
3615else
3616    ListViewValue=find(ListViewLines==iview);
3617end
3618ref_i=str2num(get(handles.num_first_i,'String'));
3619ref_j=1; % default
3620if strcmp(get(handles.num_first_j,'String'),'Visible')
3621    ref_j=str2num(get(handles.num_first_j,'String'));
3622end
3623[ModeMenu,ModeValue]=update_mode(SeriesData.i1_series{iview},SeriesData.i2_series{iview},SeriesData.j2_series{iview});
3624displ_pair=update_listpair(SeriesData.i1_series{iview},SeriesData.i2_series{iview},SeriesData.j1_series{iview},SeriesData.j2_series{iview},ModeMenu{ModeValue},...
3625                                                     SeriesData.Time{iview},TimeUnit,ref_i,ref_j,SeriesData.FileInfo{iview});
3626% first raw of the GUI
3627uicontrol('Style','text','Units','normalized', 'Position', [0.05 0.88 0.5 0.1],'BackgroundColor',BackgroundColor,...
3628    'String','row to edit #','FontUnits','points','FontSize',12,'FontWeight','bold','ForegroundColor','blue','HorizontalAlignment','right'); % title
3629uicontrol('Style','popupmenu','Units','normalized', 'Position', [0.54 0.8 0.3 0.2],'BackgroundColor',[1 1 1],...
3630    'Callback',@(hObject,eventdata)ListView_Callback(hObject,eventdata),'String',ListViewMenu,'Value',ListViewValue,'FontUnits','points','FontSize',12,'FontWeight','bold',...
3631    'Tag','ListView','TooltipString','''ListView'':choice of the file series w for pair display');
3632% second raw of the GUI
3633uicontrol('Style','text','Units','normalized', 'Position', [0.05 0.79 0.7 0.1],'BackgroundColor',BackgroundColor,...
3634    'String','mode of index pairing:','FontUnits','points','FontSize',12,'FontWeight','bold','ForegroundColor','blue','HorizontalAlignment','left'); % title
3635uicontrol('Style','popupmenu','Units','normalized', 'Position', [0.05 0.62 0.9 0.2],'BackgroundColor',[1 1 1],...
3636    'Callback',@(hObject,eventdata)Mode_Callback(hObject,eventdata),'String',ModeMenu,'Value',ModeValue,'FontUnits','points','FontSize',12,'FontWeight','bold',...
3637    'Tag','Mode','TooltipString','''Mode'': choice of the image pair mode');
3638% third raw
3639uicontrol('Style','text','Units','normalized', 'Position', [0.05 0.6 0.7 0.1],'BackgroundColor',BackgroundColor,...
3640    'String','pair choice:','FontUnits','points','FontSize',12,'FontWeight','bold','ForegroundColor','blue','HorizontalAlignment','left'); % title
3641uicontrol('Style','listbox','Units','normalized', 'Position', [0.05 0.42 0.9 0.2],'BackgroundColor',[1 1 1],...
3642    'Callback',@(hObject,eventdata)ListPair_Callback(hObject,eventdata),'String',displ_pair,'Value',1,'FontUnits','points','FontSize',12,'FontWeight','bold',...
3643    'Tag','ListPair','TooltipString','''ListPair'': menu for selecting the image pair');
3644uicontrol('Style','text','Units','normalized', 'Position', [0.1 0.22 0.8 0.1],'BackgroundColor',BackgroundColor,...
3645    'String','ref_i           ref_j','FontUnits','points','FontSize',12,'FontWeight','bold','ForegroundColor','blue','HorizontalAlignment','center'); % title
3646uicontrol('Style','edit','Units','normalized', 'Position', [0.15 0.17 0.3 0.08],'BackgroundColor',[1 1 1],...
3647    'Callback',@(hObject,eventdata)num_ref_i_Callback(hObject,eventdata),'String',num2str(ref_i),'FontUnits','points','FontSize',12,'FontWeight','bold',...
3648    'Tag','num_ref_i','TooltipString','''num_ref_i'': reference field index i used to display dt in ''list_pair_civ''');
3649uicontrol('Style','edit','Units','normalized', 'Position', [0.55 0.17 0.3 0.08],'BackgroundColor',[1 1 1],...
3650    'Callback',@(hObject,eventdata)num_ref_j_Callback(hObject,eventdata),'String',num2str(ref_j),'FontUnits','points','FontSize',12,'FontWeight','bold',...
3651    'Tag','num_ref_j','TooltipString','''num_ref_j'': reference field index i used to display dt in ''list_pair_civ''');
3652uicontrol('Style','pushbutton','Units','normalized', 'Position', [0.01 0.01 0.3 0.12],'BackgroundColor',[0 1 0],...
3653    'Callback',@(hObject,eventdata)OK_Callback(hObject,eventdata),'String','OK','FontUnits','points','FontSize',12,'FontWeight','bold',...
3654    'Tag','OK','TooltipString','''OK'': validate the choice');
3655%  last raw  of the GUI: pushbuttons
3656% 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),...
3657%     'FontWeight','bold','FontUnits','points','FontSize',12,'TooltipString','''OK'': apply the output to the current field series in uvmat');
3658drawnow
3659
3660%------------------------------------------------------------------------
3661function ListView_Callback(hObject,eventdata)
3662Mode_Callback(hObject,eventdata)
3663
3664%------------------------------------------------------------------------   
3665function Mode_Callback(hObject,eventdata)
3666%% get input info
3667hseries=findobj(allchild(0),'tag','series'); % handles of the GUI series
3668hhseries=guidata(hseries); % handles of the elements in the GUI series
3669TimeUnit=get(hhseries.TimeUnit,'String');
3670SeriesData=get(hseries,'UserData');
3671mode_list=get(hObject,'String');
3672mode=mode_list{get(hObject,'Value')};
3673hListView=findobj(get(hObject,'parent'),'Tag','ListView');
3674iview=get(hListView,'Value');
3675i1_series=SeriesData.i1_series{iview};
3676i2_series=SeriesData.i2_series{iview};
3677j1_series=SeriesData.j1_series{iview};
3678j2_series=SeriesData.j2_series{iview};
3679
3680%% enable j index visibility after the new choice
3681status_j='on'; % default
3682if isempty(find(~cellfun(@isempty,SeriesData.j1_series), 1)); % case of empty j indices
3683    status_j='off'; % no j index needed
3684elseif strcmp(get(handles.PairString,'Visible'),'on')
3685    check_burst=cellfun(@isempty,regexp(PairString,'^j')); % =0 for burst case, 1 otherwise
3686    if isempty(find(check_burst, 1))% if all pair string begins by j (burst)
3687        status_j='off'; % no j index needed for bust case
3688    end
3689end
3690enable_j(handles,status_j) % no j index needed
3691
3692%% get the reference indices for the time interval Dt
3693href_i=findobj(get(hObject,'parent'),'Tag','ref_i');
3694ref_i=[];ref_j=[];
3695if strcmp(get(href_i,'Visible'),'on')
3696    ref_i=str2num(get(href_i,'String'));
3697end
3698if isempty(ref_i)
3699    ref_i=1;
3700end
3701if isempty(ref_j)
3702    ref_j=1;
3703end
3704
3705%% update the menu ListPair
3706Menu=update_listpair(i1_series,i2_series,j1_series,j2_series,mode,SeriesData.Time{iview},TimeUnit,ref_i,ref_j,FileInfo);
3707hlist_pairs=findobj(get(hObject,'parent'),'Tag','ListPair');
3708set(hlist_pairs,'Value',1)% set the first choice by default in ListPair
3709set(hlist_pairs,'String',Menu)% set the menu in ListPair
3710ListPair_Callback(hlist_pairs,[])% apply the default choice in ListPair
3711
3712%-------------------------------------------------------------
3713% --- Executes on selection in ListPair.
3714function ListPair_Callback(hObject,eventdata)
3715%------------------------------------------------------------
3716list_pair=get(hObject,'String'); % get the menu of image pairs
3717if isempty(list_pair)
3718    string='';
3719else
3720    string=list_pair{get(hObject,'Value')};
3721   % string=regexprep(string,',.*',''); % removes time indication (after ',')
3722end
3723hseries=findobj(allchild(0),'tag','series');
3724hPairString=findobj(hseries,'tag','PairString');
3725PairString=get(hPairString,'Data');
3726hListView=findobj(get(hObject,'parent'),'Tag','ListView');
3727iview=get(hListView,'Value');
3728PairString{iview,1}=string;
3729% report the selected pair string to the table PairString
3730set(hPairString,'Data',PairString)
3731
3732
3733%------------------------------------------------------------------------
3734function num_ref_i_Callback(hObject, eventdata)
3735%------------------------------------------------------------------------
3736Mode_Callback([],[])
3737
3738%------------------------------------------------------------------------
3739function num_ref_j_Callback(hObject, eventdata)
3740%------------------------------------------------------------------------
3741Mode_Callback([],[])
3742
3743%------------------------------------------------------------------------
3744function OK_Callback(hObject, eventdata)
3745%------------------------------------------------------------------------
3746delete(get(hObject,'parent'))
3747
3748
3749%------------------------------------------------------------------------
3750% --- Executes on button press in ClearLine.
3751%------------------------------------------------------------------------
3752function ClearLine_Callback(hObject, eventdata, handles)
3753InputTable=get(handles.InputTable,'Data');
3754iline=str2double(get(handles.InputLine,'String'));
3755if size(InputTable,1)>1
3756    InputTable(iline,:)=[]; % suppress the current line if not the first
3757    set(handles.InputTable,'Data',InputTable);
3758end
3759set(handles.REFRESH,'BackgroundColor',[1 0 1])% set REFRESH button to magenta color to indicate that input refr
3760
3761
3762% --- Executes on button press in MonitorCluster.
3763function MonitorCluster_Callback(hObject, eventdata, handles)
3764disp('format: R/W=run/wait, time lapsed, R=nbre of cores,W=walltime')
3765system('oarstat |grep N=UVmat')% check the list of jobs launched with uvmat
3766
3767
3768function OutputSubDir_Callback(hObject, eventdata, handles)
3769set(handles.OutputSubDir,'BackgroundColor',[1 1 1])
3770
3771
3772% --- Executes on button press in CheckOverwrite.
3773function CheckOverwrite_Callback(hObject, eventdata, handles)
3774
3775% --- Executes on button press in TestCPUTime.
3776function TestCPUTime_Callback(hObject, eventdata, handles)
3777% hObject    handle to TestCPUTime (see GCBO)
3778% eventdata  reserved - to be defined in a future version of MATLAB
3779% handles    structure with handles and user data (see GUIDATA)
3780
3781
3782% --- Executes on button press in DiskQuota.
3783function DiskQuota_Callback(hObject, eventdata, handles)
3784SeriesData=get(handles.series,'UserData');
3785system(SeriesData.SeriesParam.DiskQuotaCmd)
3786
3787
3788
Note: See TracBrowser for help on using the repository browser.