source: trunk/src/series.m @ 1095

Last change on this file since 1095 was 1095, checked in by sommeria, 3 years ago

reading mat files added, +-fixed,OpenDAP improved

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