source: trunk/src/series.m @ 803

Last change on this file since 803 was 803, checked in by sommeria, 10 years ago

bugs corrected in series and uigetfile_uvmat (for Windows OS)

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