source: trunk/src/series.m @ 639

Last change on this file since 639 was 639, checked in by sommeria, 11 years ago

introduction of mask on projection: fct mask_proj

File size: 115.7 KB
RevLine 
[2]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)
[446]8%      .menu_coord_str: string for the TransformName (menu for coordinate transforms)
9%      .menu_coord_val: value for TransformName (menu for coordinate transforms)
[2]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 Joel Sommeria, 2008, LEGI / CNRS-UJF-INPG, sommeria@coriolis-legi.org.
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
[408]32%------------------------------------------------------------------------
33%------------------------------------------------------------------------
34%  I - MAIN FUNCTION series
35%------------------------------------------------------------------------
36%------------------------------------------------------------------------
[2]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%--------------------------------------------------------------------------
[591]61function series_OpeningFcn(hObject, eventdata, handles,Param)
62
[2]63% Choose default command line output for series
64handles.output = hObject;
65% Update handles structure
66guidata(hObject, handles);
[591]67
68%% initial settings
[620]69% position and  size of the GUI at opening
[609]70set(0,'Unit','points')
[620]71ScreenSize=get(0,'ScreenSize');%size of the current screen, in points (1/72 inch)
[612]72Width=900;% prefered width of the GUI in points (1/72 inch)
[620]73Height=624;% prefered height of the GUI in points (1/72 inch)
[609]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=RescaleFactor/2+1/2; %reduce the rescale factor to provide an increased margin for a big screen
78    RescaleFactor=min(RescaleFactor,1);
79end
80Width=Width*RescaleFactor;
81Height=Height*RescaleFactor;
82LeftX=80*RescaleFactor;%position of the left fig side, in pixels (put to the left side, with some margin)
83LowY=round(ScreenSize(4)/2-Height/2); % put at the middle height on the screen
84set(hObject,'Units','points')
[620]85set(hObject,'Position',[LeftX LowY Width Height])% position and size of the GUI at opening
86
87% settings of table MinIndex_j
88set(handles.MinIndex_i,'ColumnFormat',{'numeric'})
89set(handles.MinIndex_i,'ColumnEditable',false)
90set(handles.MinIndex_i,'ColumnName',{'i min'})
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'})
96
97% settings of table MaxIndex_i
98set(handles.MaxIndex_i,'ColumnFormat',{'numeric'})
99set(handles.MaxIndex_i,'ColumnEditable',false)
100set(handles.MaxIndex_i,'ColumnName',{'i max'})
101
102% settings of table MaxIndex_j
103set(handles.MaxIndex_j,'ColumnFormat',{'numeric'})
104set(handles.MaxIndex_j,'ColumnEditable',false)
105set(handles.MaxIndex_j,'ColumnName',{'j max'})
106
107% settings of table PairString
[526]108set(handles.PairString,'ColumnName',{'pairs'})
[598]109set(handles.PairString,'ColumnEditable',false)
[408]110set(handles.PairString,'ColumnFormat',{'char'})
111set(handles.PairString,'Data',{''})
[620]112
[526]113series_ResizeFcn(hObject, eventdata, handles)%resize table according to series GUI size
[332]114set(hObject,'WindowButtonDownFcn',{'mouse_down'})%allows mouse action with right button (zoom for uicontrol display)
[620]115
[591]116% check default input data
117if ~exist('Param','var')
118    Param=[]; %default
[609]119end
[591]120
[609]121%% list of builtin functions in the mebu ActionName
[591]122ActionList={'check_data_files';'aver_stat';'time_series';'merge_proj'};% WARNING: fits with nb_builtin_ACTION=4 in ActionName_callback
[609]123NbBuiltinAction=numel(ActionList);
[591]124[path_series,name,ext]=fileparts(which('series'));% path to the GUI series
125path_series_fct=fullfile(path_series,'series');%path of the functions in subdirectroy 'series'
[609]126ActionExtList={'.m';'.sh'};% default choice of extensions (Matlab fct .m or compiled version .sh
127ActionPathList=cell(NbBuiltinAction,numel(ActionExtList));%initiate the cell matrix of Action fct paths
128ActionPathList(:)={path_series_fct}; %set the default path to series fcts to all list members
[591]129RunModeList={'local';'background'};% default choice of extensions (Matlab fct .m or compiled version .sh)
130[s,w]=system('oarstat');% look for cluster system 'oar'
131if isequal(s,0)
132    RunModeList=[RunModeList;{'cluster_oar'}];
133end
134[s,w]=system('qstat');% look for cluster system 'sge'
135if isequal(s,0)
136    RunModeList=[RunModeList;{'cluster_sge'}];
137end
138set(handles.RunMode,'String',RunModeList)
139
[609]140%% list of builtin transform functions in the mebu TransformName
[591]141TransformList={'';'sub_field';'phys';'phys_polar'};% WARNING: must fit with the corresponding menu in uvmat and nb_builtin_transform=4 in  TransformName_callback
[609]142NbBuiltinTransform=numel(TransformList);
[591]143path_transform_fct=fullfile(path_series,'transform_field');
[609]144TransformPathList=cell(NbBuiltinTransform,1);%initiate the cell matrix of Action fct paths
145TransformPathList(:)={path_transform_fct}; %set the default path to series fcts to all list members
[591]146
[609]147%% get the user defined functions stored in the personal file uvmat_perso.mat
[2]148dir_perso=prefdir;
149profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
150if exist(profil_perso,'file')
[591]151    h=load (profil_perso);
152    %get the list of previous input files in the upper bar menu Open
153    if isfield(h,'MenuFile')
154        for ifile=1:min(length(h.MenuFile),5)
155            eval(['set(handles.MenuFile_' num2str(ifile) ',''Label'',h.MenuFile{ifile});'])
156        end
157    end
158    %get the menu of actions
159    if isfield(h,'ActionExtListUser') && iscell(h.ActionExtListUser)
160        ActionExtList=[ActionExtList; h.ActionExtListUser];
161    end
162    if isfield(h,'ActionListUser') && iscell(h.ActionListUser) && isfield(h,'ActionPathListUser') && iscell(h.ActionPathListUser)
163        ActionList=[ActionList;h.ActionListUser];
164        ActionPathList=[ActionPathList;h.ActionPathListUser];
165    end
166    %get the menu of transform fct
167    if isfield(h,'TransformListUser') && iscell(h.TransformListUser) && isfield(h,'TransformPathListUser') && iscell(h.TransformPathListUser)
168        TransformList=[TransformList;h.TransformListUser];
169        TransformPathList=[TransformPathList;h.TransformPathListUser];
170    end
[2]171end
172
[591]173%% selection of the input Action fct
[609]174ActionCheckExist=true(size(ActionList));%initiate the check of the path to the listed action fct
175for ilist=NbBuiltinAction+1:numel(ActionList)%check  the validity of the path of the user defined Action fct
[591]176    ActionCheckExist(ilist)=exist(fullfile(ActionPathList{ilist},[ActionList{ilist} '.m']),'file');
[2]177end
[609]178ActionPathList=ActionPathList(ActionCheckExist,:);% suppress the menu options which are not valid anymore
[591]179ActionList=ActionList(ActionCheckExist);
180set(handles.ActionName,'String',[ActionList;{'more...'}])
181set(handles.ActionName,'UserData',ActionPathList)
182ActionIndex=[];
183if isfield(Param,'ActionName')% copy the selected menu index transferred in Param from uvmat
184    ActionIndex=find(strcmp(Param.ActionName,ActionList),1);
[2]185end
[591]186if isempty(ActionIndex)
187    ActionIndex=1;
[2]188end
[591]189set(handles.ActionName,'Value',ActionIndex)
190set(handles.ActionPath,'String',ActionPathList{ActionIndex})
191set(handles.ActionExt,'Value',1)
192set(handles.ActionExt,'String',ActionExtList)
[2]193
[591]194%% selection of the input transform fct
[609]195TransformCheckExist=true(size(TransformList));
196for ilist=NbBuiltinTransform+1:numel(TransformList)
[591]197    TransformCheckExist(ilist)=exist(fullfile(TransformPathList{ilist},[TransformList{ilist} '.m']),'file');
[2]198end
[591]199TransformPathList=TransformPathList(TransformCheckExist);
200TransformList=TransformList(TransformCheckExist);
201set(handles.TransformName,'String',[TransformList;{'more...'}])
202set(handles.TransformName,'UserData',TransformPathList)
203TransformIndex=[];
204if isfield(Param,'TransformName')% copy the selected menu index transferred in Param from uvmat
205    TransformIndex=find(strcmp(Param.TransformName,TransformList),1);
[526]206end
[591]207if isempty(TransformIndex)
208    TransformIndex=1;
[526]209end
[591]210set(handles.TransformName,'Value',TransformIndex)
211set(handles.TransformPath,'String',TransformPathList{TransformIndex})
212   
213%% fields input initialisation
214if isfield(Param,'list_fields')&& isfield(Param,'index_fields') &&~isempty(Param.list_fields) &&~isempty(Param.index_fields)
215    set(handles.FieldName,'String',Param.list_fields);% list menu fields
216    set(handles.FieldName,'Value',Param.index_fields);% selected string index
[2]217end
[591]218if isfield(Param,'Coord_x_str')&& isfield(Param,'Coord_x_val')
219        set(handles.Coord_x,'String',Param.Coord_x_str);% list menu fields
220    set(handles.Coord_x,'Value',Param.Coord_x_val);% selected string index
[38]221end
[591]222if isfield(Param,'Coord_y_str')&& isfield(Param,'Coord_y_val')
223        set(handles.Coord_y,'String',Param.Coord_y_str);% list menu fields
224    set(handles.Coord_y,'Value',Param.Coord_y_val);% selected string index
[2]225end
[39]226
[472]227%% Adjust the GUI according to the binaries available in PARAM.xml
[594]228% path_uvmat=fileparts(which('uvmat')); %path to civ
229% addpath (path_uvmat) ; %add the path to civ, (useful in case of change of working directory after civ has been s opened in the working directory)
230% errormsg=[];%default error message
231% xmlfile='PARAM.xml';
232% if exist(xmlfile,'file')
233%     try
234%         t=xmltree(xmlfile);
235%         sparam=convert(t);
236%     catch ME
237%         errormsg={' Unable to read the file PARAM.xml defining the  binaries:';ME.message};
238%     end
239% else
240%     errormsg=[xmlfile ' not found: path to binaries undefined'];
241% end
242% if ~isempty(errormsg)
243%     msgbox_uvmat('WARNING',errormsg);
244% end
245% test_batch=0;%default: ,no batch mode available
246% if isfield(sparam,'BatchParam') && isfield(sparam.BatchParam,'BatchMode')
247%     test_batch=strcmp(sparam.BatchParam.BatchMode,'sge'); %sge is currently the only implemented batch mod
248% end
249% RUNVal=get(handles.RunMode,'Value');
250% if test_batch==0
251%    if RUNVal>2
252%        set(handles.RunMode,'Value',1)
253%    end
254%    set(handles.RunMode,'String',{'local';'background'})
255% else
256%     set(handles.RunMode,'String',{'local';'background';'cluster'})
257% end
[2]258
[591]259%% introduce the input file name(s) if defined from input Param
260if isfield(Param,'FileName')
261    InputTable={'','','','',''}; % refresh the file input table
262    set(handles.InputTable,'Data',InputTable)
263    if isfield(Param,'FileName_1')
[620]264        display_file_name(handles,Param.FileName,'one')%refresh the input table
265        display_file_name(handles,Param.FileName_1,1)
[591]266    else
[620]267        display_file_name(handles,Param.FileName,'one')%refresh the input table
[591]268    end
269end 
270if isfield(Param,'incr_i')
271    set(handles.num_incr_i,'String',num2str(Param.incr_i))
272end
273if isfield(Param,'incr_j')
274    set(handles.num_incr_j,'String',num2str(Param.incr_j))
275end
276
277
[408]278%------------------------------------------------------------------------
[2]279% --- Outputs from this function are returned to the command line.
280function varargout = series_OutputFcn(hObject, eventdata, handles)
[408]281%------------------------------------------------------------------------
[2]282% varargout  cell array for returning output args (see VARARGOUT);
283% hObject    handle to figure
284% eventdata  reserved - to be defined in a future version of MATLAB
285% handles    structure with handles and user data (see GUIDATA)
286% Get default command line output from handles structure
287varargout{1} = handles.output;
288
[408]289%------------------------------------------------------------------------
290%------------------------------------------------------------------------
291%  II - FUNCTIONS FOR INTRODUCING THE INPUT FILES
292% automatically sets the global properties when the rootfile name is introduced
[446]293% then activate the view-field actionname if selected
[408]294% it is activated either by clicking on the RootPath window or by the
295% browser
296%------------------------------------------------------------------------
297%------------------------------------------------------------------------
[2]298function MenuBrowse_Callback(hObject, eventdata, handles)
[408]299%------------------------------------------------------------------------   
[606]300%get the previous input file in the Input Table
301oldfile=''; %default
[609]302SeriesData=get(handles.series,'UserData');
303if isfield(SeriesData,'RefFile')
304    oldfile=SeriesData.RefFile{1};
305end
306if ~exist(oldfile,'file')
[606]307    dir_perso=prefdir;
308    profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
309    if exist(profil_perso,'file')
310         h=load (profil_perso);
311        if isfield(h,'RootPath')&&ischar(h.RootPath)
312            oldfile=h.RootPath;
[472]313        end
[463]314    end
[606]315end
[620]316fileinput=uigetfile_uvmat('pick a file to refresh the input table',oldfile);
[609]317if ~isempty(fileinput)
[620]318     display_file_name(handles,fileinput,'one')
[2]319end
320
[620]321
[2]322% --------------------------------------------------------------------
323function MenuFile_1_Callback(hObject, eventdata, handles)
324fileinput=get(handles.MenuFile_1,'Label');
[620]325display_file_name(handles,fileinput,'one')
[2]326
327% --------------------------------------------------------------------
328function MenuFile_2_Callback(hObject, eventdata, handles)
329fileinput=get(handles.MenuFile_2,'Label');
[620]330display_file_name(handles,fileinput,'one')
[2]331
332% --------------------------------------------------------------------
333function MenuFile_3_Callback(hObject, eventdata, handles)
334fileinput=get(handles.MenuFile_3,'Label');
[620]335display_file_name( handles,fileinput,'one')
[2]336
337% --------------------------------------------------------------------
338function MenuFile_4_Callback(hObject, eventdata, handles)
339fileinput=get(handles.MenuFile_4,'Label');
[620]340display_file_name(handles,fileinput,'one')
[2]341
342% --------------------------------------------------------------------
343function MenuFile_5_Callback(hObject, eventdata, handles)
344fileinput=get(handles.MenuFile_5,'Label');
[620]345display_file_name(handles,fileinput,'one')
[2]346
347% --------------------------------------------------------------------
348function MenuBrowse_insert_Callback(hObject, eventdata, handles)
[350]349InputTable=get(handles.InputTable,'Data');
350RootPathCell=InputTable(:,1);
351SubDirCell=InputTable(:,3);
352RootFileCell=InputTable(:,2);
[2]353oldfile=''; %default
[206]354if isempty(RootPathCell)||isequal(RootPathCell,{''})%loads the previously stored file name and set it as default in the file_input box
[2]355     dir_perso=prefdir;
356     profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
357     if exist(profil_perso,'file')
358          h=load (profil_perso);
359         if isfield(h,'filebase')&ischar(h.filebase)
360                 oldfile=h.filebase;
361         end
362         if isfield(h,'RootPath')&ischar(h.RootPath)
363                 oldfile=h.RootPath;
364         end
365     end
366 else
367     oldfile=fullfile(RootPathCell{1},RootFileCell{1});
368end
[638]369 fileinput=uigetfile_uvmat('pick a file to append in the input table',oldfile);
370if ~isempty(fileinput)
371     display_file_name(handles,fileinput,'append')
372end
373% [FileName, PathName, filterindex] = uigetfile( ...
374%        {'*.xml;*.xls;*.png;*.avi;*.AVI;*.nc', ' (*.xml,*.xls, *.png, *.avi,*.nc)';
375%        '*.xml',  '.xml files '; ...
376%         '*.xls',  '.xls files '; ...
377%         '*.png','.png image files'; ...
378%         '*.avi;*.AVI','.avi movie files'; ...
379%         '*.nc','.netcdf files'; ...
380%         '*.*',  'All Files (*.*)'}, ...
381%         'Pick a file',oldfile);
382% fileinput=[PathName FileName];%complete file name
383% sizf=size(fileinput);
384% if (~ischar(fileinput)|~isequal(sizf(1),1)),return;end
385% [path,name,ext]=fileparts(fileinput);
386% if isequal(ext,'.xml')
387%     msgbox_uvmat('ERROR','input file type not implemented')%A Faire: ouvrir le fichier pour naviguer
388% elseif isequal(ext,'.xls')
389%     msgbox_uvmat('ERROR','input file type not implemented')%A Faire: ouvrir le fichier pour naviguer
390% else
391%     display_file_name(handles,fileinput,'append')
392% end
[2]393
394% --------------------------------------------------------------------
395function MenuFile_insert_1_Callback(hObject, eventdata, handles)
[408]396% --------------------------------------------------------------------   
[2]397fileinput=get(handles.MenuFile_insert_1,'Label');
[472]398display_file_name(handles,fileinput,'append')
[2]399
400% --------------------------------------------------------------------
401function MenuFile_insert_2_Callback(hObject, eventdata, handles)
[408]402% --------------------------------------------------------------------   
[2]403fileinput=get(handles.MenuFile_insert_2,'Label');
[472]404display_file_name(handles,fileinput,'append')
[2]405
406% --------------------------------------------------------------------
407function MenuFile_insert_3_Callback(hObject, eventdata, handles)
[408]408% --------------------------------------------------------------------   
[2]409fileinput=get(handles.MenuFile_insert_3,'Label');
[472]410display_file_name( handles,fileinput,'append')
[2]411
412% --------------------------------------------------------------------
413function MenuFile_insert_4_Callback(hObject, eventdata, handles)
[408]414% --------------------------------------------------------------------   
[2]415fileinput=get(handles.MenuFile_insert_4,'Label');
[472]416display_file_name( handles,fileinput,'append')
[2]417
418% --------------------------------------------------------------------
419function MenuFile_insert_5_Callback(hObject, eventdata, handles)
[408]420% --------------------------------------------------------------------   
[2]421fileinput=get(handles.MenuFile_insert_5,'Label');
[472]422display_file_name(handles,fileinput,'append')
[2]423
[89]424%------------------------------------------------------------------------
[408]425% --- Executes when entered data in editable cell(s) in InputTable.
426function InputTable_CellEditCallback(hObject, eventdata, handles)
427%------------------------------------------------------------------------
[472]428set(handles.REFRESH,'Visible','on')
[605]429set(handles.REFRESH_title,'Visible','on')
[408]430iview=eventdata.Indices(1);
[472]431view_set=get(handles.REFRESH,'UserData');
432if isempty(find(view_set==iview))
433    set(handles.REFRESH,'UserData',[view_set iview])
434end
435%% enable other menus and uicontrols
436set(handles.MenuOpen_insert,'Enable','on')
437set(handles.MenuFile_insert_1,'Enable','on')
438set(handles.MenuFile_insert_2,'Enable','on')
439set(handles.MenuFile_insert_3,'Enable','on')
440set(handles.MenuFile_insert_4,'Enable','on')
441set(handles.MenuFile_insert_5,'Enable','on')
442set(handles.RUN, 'Enable','On')
443set(handles.RUN,'BackgroundColor',[1 0 0])% set RUN button to red
444
445%------------------------------------------------------------------------
446% --- Executes on button press in REFRESH.
447function REFRESH_Callback(hObject, eventdata, handles)
448%------------------------------------------------------------------------
[408]449InputTable=get(handles.InputTable,'Data');
[620]450view_set=get(handles.REFRESH,'UserData');% list of lines to refresh
[605]451set(handles.REFRESH,'BackgroundColor',[1 1 0])% set REFRESH  button to yellow color (indicate activation)
[472]452drawnow
453for iview=view_set
454    RootPath=fullfile(InputTable{iview,1},InputTable{iview,2});
455    if ~exist(RootPath,'dir')
456        i1_series=[];
457        RootPath=fileparts(RootPath); %will try the upped forldr
458    else
[599]459        [RootPath,SubDir,RootFile,i1_series,i2_series,j1_series,j2_series,tild,FileType,FileInfo,MovieObject]=...
[472]460            find_file_series(fullfile(InputTable{iview,1},InputTable{iview,2}),[InputTable{iview,3} InputTable{iview,4} InputTable{iview,5}]);
[446]461    end
[472]462    if isempty(i1_series)
[620]463        fileinput=uigetfile_uvmat(['wrong input at line ' num2str(iview) ':pick a new input file'],RootPath);
464        if isempty(fileinput)
[605]465            set(handles.REFRESH,'BackgroundColor',[1 0 0])% set REFRESH  back to red color
[620]466            return
467        else
468            display_file_name(handles,fileinput,iview)
469        end
[472]470    else
[620]471       update_rootinfo(handles,i1_series,i2_series,j1_series,j2_series,FileType,FileInfo,MovieObject,iview)
[472]472    end
[446]473end
[472]474set(handles.REFRESH,'Visible','off')
[605]475set(handles.REFRESH_title,'Visible','off')
[472]476set(handles.REFRESH,'UserData',[])
[408]477
478%------------------------------------------------------------------------
[472]479% --- Function called when a new file is opened, either by series_OpeningFcn or by the browser
480function display_file_name(handles,fileinput,iview)
481%------------------------------------------------------------------------ 
482%
[332]483% INPUT:
[472]484% handles: handles of elements in the GUI
[609]485% fileinput: input file name, including path
486% iview: line index in the input table
[620]487%       or 'one': refresh the list
488%       'append': add a new line to the list
[332]489
[408]490%% get the input root name, indices, file extension and nomenclature NomType
491if ~exist(fileinput,'file')
492    msgbox_uvmat('ERROR',['input file ' fileinput  ' does not exist'])
493    return
494end
495
[332]496%% enable other menus and uicontrols
497set(handles.MenuOpen_insert,'Enable','on')
498set(handles.MenuFile_insert_1,'Enable','on')
499set(handles.MenuFile_insert_2,'Enable','on')
500set(handles.MenuFile_insert_3,'Enable','on')
501set(handles.MenuFile_insert_4,'Enable','on')
502set(handles.MenuFile_insert_5,'Enable','on')
503set(handles.RUN, 'Enable','On')
504set(handles.RUN,'BackgroundColor',[1 0 0])% set RUN button to red
[350]505set(handles.InputTable,'BackgroundColor',[1 1 0]) % set RootPath edit box  to yellow
[332]506drawnow
507
[408]508%% detect root name, nomenclature and indices in the input file name:
509[FilePath,FileName,FileExt]=fileparts(fileinput);
510% detect the file type, get the movie object if relevant, and look for the corresponding file series:
511% the root name and indices may be corrected by including the first index i1 if a corresponding xml file exists
[599]512[RootPath,SubDir,RootFile,i1_series,i2_series,j1_series,j2_series,NomType,FileType,FileInfo,MovieObject,i1,i2,j1,j2]=find_file_series(FilePath,[FileName FileExt]);
[408]513if isempty(RootFile)&&isempty(i1_series)
514    errormsg='no input file in the series';
[29]515    return
516end
[89]517
[376]518%% fill the list of file series
519InputTable=get(handles.InputTable,'Data');
[620]520SeriesData=get(handles.series,'UserData');
[472]521if strcmp(iview,'append') % display the input data as a new line in the table
[620]522    iview=size(InputTable,1);% the next line in InputTable becomes the current line
523    InputTable(iview+1,:)={'','','','',''};
524    InputTable(iview,:)=[{RootPath},{SubDir},{RootFile},{NomType},{FileExt}];
525elseif strcmp(iview,'one') % refresh the list of  input  file series
526    iview=1; %the first line in InputTable becomes the current line
[472]527    InputTable=[{'','','','',''};{'','','','',''}];
[620]528    InputTable(iview,:)=[{RootPath},{SubDir},{RootFile},{NomType},{FileExt}];
529    set(handles.TimeTable,'Data',[{[]},{[]},{[]},{[]}])
[635]530    set(handles.MinIndex_i,'Data',[])
531    set(handles.MaxIndex_i,'Data',[])
532    set(handles.MinIndex_j,'Data',[])
533    set(handles.MaxIndex_j,'Data',[])
[408]534    set(handles.ListView,'Value',1)
535    set(handles.ListView,'String',{'1'})
[620]536    set(handles.PairString,'Data',{''})
537    SeriesData.i1_series={};
538    SeriesData.i2_series={};
539    SeriesData.j1_series={};
540    SeriesData.j2_series={};
541    SeriesData.FileType={};
542    SeriesData.FileInfo={};
543    SeriesData.Time={};
[376]544end
[620]545nbview=size(InputTable,1)-1;% rmq: the last line is set blank to allow manual addition of a line
[472]546set(handles.ListView,'String',mat2cell((1:nbview)',ones(nbview,1)))
547set(handles.ListView,'Value',iview)
[376]548set(handles.InputTable,'Data',InputTable)
549
[472]550%% determine the selected reference field indices for pair display
[603]551if isempty(i1)
552    i1=1;
[472]553end
[603]554if isempty(i2)
555    i2=i1;
556end
557ref_i=floor((i1+i2)/2);% reference image number corresponding to the file
[472]558set(handles.num_ref_i,'String',num2str(ref_i));
[609]559% set(handles.num_ref_i,'UserData',[i1 i2])%store the indices for future opening
[603]560if isempty(j1)
561    j1=1;
[472]562end
[603]563if isempty(j2)
564    j2=j1;
565end
566ref_j=floor((j1+j2)/2);% reference image number corresponding to the file
[472]567set(handles.num_ref_j,'String',num2str(ref_j));
[609]568% set(handles.num_ref_j,'UserData',[j1 j2]);%store the indices for future opening
[472]569
570%% update the list of recent files in the menubar and save it for future opening
571MenuFile=[{get(handles.MenuFile_1,'Label')};{get(handles.MenuFile_2,'Label')};...
572    {get(handles.MenuFile_3,'Label')};{get(handles.MenuFile_4,'Label')};{get(handles.MenuFile_5,'Label')}];
573str_find=strcmp(fileinput,MenuFile);
574if isempty(find(str_find,1))
575    MenuFile=[{fileinput};MenuFile];%insert the current file if not already in the list
576end
577for ifile=1:min(length(MenuFile),5)
578    eval(['set(handles.MenuFile_' num2str(ifile) ',''Label'',MenuFile{ifile});'])
579    eval(['set(handles.MenuFile_insert_' num2str(ifile) ',''Label'',MenuFile{ifile});'])
580end
581dir_perso=prefdir;
582profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
583if exist(profil_perso,'file')
584    save (profil_perso,'MenuFile','-append'); %store the file names for future opening of uvmat
585else
586    save (profil_perso,'MenuFile','-V6'); %store the file names for future opening of uvmat
587end
[609]588% save the opened file to initiate future opening
[620]589SeriesData.RefFile{iview}=fileinput;% reference opening file for line iview
590SeriesData.Ref_i1=i1;
591SeriesData.Ref_i2=i2;
592SeriesData.Ref_j1=j1;
593SeriesData.Ref_j2=j2;
[609]594set(handles.series,'UserData',SeriesData)
[472]595
596set(handles.InputTable,'BackgroundColor',[1 1 1])
597
598%% initiate input file series and refresh the current field view:     
[599]599update_rootinfo(handles,i1_series,i2_series,j1_series,j2_series,FileType,FileInfo,MovieObject,iview);
[472]600
601%------------------------------------------------------------------------
602% --- Update information about a new field series (indices to scan, timing,
603%     calibration from an xml file
[599]604function update_rootinfo(handles,i1_series,i2_series,j1_series,j2_series,FileType,FileInfo,VideoObject,iview)
[472]605%------------------------------------------------------------------------
606InputTable=get(handles.InputTable,'Data');
607
[620]608%% display the min and max indices for the whole file series
[554]609if size(i1_series,2)==2 && min(min(i1_series(:,1,:)))==0
[609]610    MinIndex_j=1;% index j set to 1 by default
[554]611    MaxIndex_j=1;
[635]612    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)
613    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)
[526]614else
[635]615    ref_i=squeeze(max(i1_series(1,:,:),[],2));% select ref_j index for each ref_i
616    ref_j=squeeze(max(j1_series(1,:,:),[],3));% select ref_i index for each ref_j
617%     [ref_j,ref_i]=find(squeeze(i1_series(1,:,:)));
618%     [ref_j,ref_i]=find(squeeze(i1_series(1,:,:)))
619     MinIndex_i=min(find(ref_i))-1;
620     MaxIndex_i=max(find(ref_i))-1;
621%         MinIndex_j=min(ref_j)-1;
622     MaxIndex_j=max(find(ref_j))-1;
623%     MinIndex_j=min(find(j1_series_j))-1;
624%     MaxIndex_j=max(find(j1_series_j))-1;
625%     MaxIndex_i=max(i1_series_i)-1;
626%     MinIndex_j=min(i1_series_j)-1;
627%     MaxIndex_j=max(i1_series_j)-1;
628%     MaxIndex_i=max(ref_i)-1;
629     MinIndex_j=min(find(ref_j))-1;
630%     MaxIndex_j=max(ref_j)-1;
631    diff_j_max=diff(ref_j);
632    diff_i_max=diff(ref_i);
633   
634%     pair_max=squeeze(max(i1_series,[],1)); %max on pair index
635%     j_max=max(pair_max,[],1);
636%     MinIndex_i=find(j_max, 1 )-1;% min ref index i detected in the series (corresponding to the first non-zero value of i1_series, except for zero index)
637%     MaxIndex_i=find(j_max, 1, 'last' )-1;% max ref index i detected in the series (corresponding to the first non-zero value of i1_series, except for zero index)
638%     diff_i_max=diff(j_max);
[609]639    if ~isempty(diff_i_max) && isequal (diff_i_max,diff_i_max(1)*ones(size(diff_i_max)))
640        set(handles.num_incr_i,'String',num2str(diff_i_max(1)))% detect an increment to dispaly by default
[526]641    end
[635]642%     i_max=max(pair_max,[],2);
643%     MinIndex_j=min(find(i_max))-1;% min ref index j
644%     MaxIndex_j=max(find(i_max))-1;% max ref index j
645%     diff_j_max=diff(i_max);
[526]646    if isequal (diff_j_max,diff_j_max(1)*ones(size(diff_j_max)))
647        set(handles.num_incr_j,'String',num2str(diff_j_max(1)))
648    end
649end
[554]650if isequal(MinIndex_i,-1)
651    MinIndex_i=0;
652end
653if isequal(MinIndex_j,-1)
654    MinIndex_j=0;
655end
[620]656MinIndex_i_cell=get(handles.MinIndex_i,'Data');%retrieve the min indices in the table MinIndex
657MinIndex_j_cell=get(handles.MinIndex_j,'Data');%retrieve the min indices in the table MinIndex
658MaxIndex_i_cell=get(handles.MaxIndex_i,'Data');%retrieve the min indices in the table MinIndex
659MaxIndex_j_cell=get(handles.MaxIndex_j,'Data');%retrieve the min indices in the table MinIndex
[635]660MinIndex_i_cell(iview,1)=MinIndex_i;
661MinIndex_j_cell(iview,1)=MinIndex_j;
662MaxIndex_i_cell(iview,1)=MaxIndex_i;
663MaxIndex_j_cell(iview,1)=MaxIndex_j;
[620]664set(handles.MinIndex_i,'Data',MinIndex_i_cell)%display the min indices in the table MinIndex
665set(handles.MinIndex_j,'Data',MinIndex_j_cell)%display the max indices in the table MaxIndex
666set(handles.MaxIndex_i,'Data',MaxIndex_i_cell)%display the min indices in the table MinIndex
667set(handles.MaxIndex_j,'Data',MaxIndex_j_cell)%display the max indices in the table MaxIndex
[460]668
[620]669%% adjust the first and last indices for the selected series, only if requested by the bounds
[609]670% i index, compare input to min index i
671first_i=str2num(get(handles.num_first_i,'String'));%retrieve previous first i
672ref_i=str2num(get(handles.num_ref_i,'String'));%index i given by the input field
[460]673if isempty(first_i)
[609]674    first_i=ref_i;% first_i updated by the input value
[460]675elseif first_i < MinIndex_i
[609]676    first_i=MinIndex_i; % first_i set to the min i index (restricted by oter input lines)
[526]677elseif first_i >MaxIndex_i
[609]678    first_i=MaxIndex_i;% first_i set to the max i index (restricted by oter input lines)
[460]679end
[609]680% j index,  compare input to min index j
[460]681first_j=str2num(get(handles.num_first_j,'String'));
[609]682ref_j=str2num(get(handles.num_ref_j,'String'));%index j given by the input field
[460]683if isempty(first_j)
[609]684    first_j=ref_j;% first_j updated by the input value
[460]685elseif first_j<MinIndex_j
[609]686    first_j=MinIndex_j; % first_j set to the min j index (restricted by oter input lines)
[526]687elseif first_j >MaxIndex_j
[609]688    first_j=MaxIndex_j; % first_j set to the max j index (restricted by oter input lines)
[460]689end
[609]690% i index, compare input to max index i
[460]691last_i=str2num(get(handles.num_last_i,'String'));
692if isempty(last_i)
693    last_i=ref_i;
694elseif last_i > MaxIndex_i
695    last_i=MaxIndex_i;
[526]696elseif last_i<first_i
697    last_i=first_i;
[460]698end
[609]699% j index, compare input to max index j
700last_j=str2num(get(handles.num_last_j,'String'));
[460]701if isempty(last_j)
702    last_j=ref_j;
703elseif last_j>MaxIndex_j
704    last_j=MaxIndex_j;
[609]705elseif last_j<first_j
706    last_j=first_j;
[460]707end
708set(handles.num_first_i,'String',num2str(first_i));
709set(handles.num_first_j,'String',num2str(first_j));
710set(handles.num_last_i,'String',num2str(last_i));
711set(handles.num_last_j,'String',num2str(last_j));
712
[620]713%% number of slices set by default
714NbSlice=1;%default
715% read  value set by the first series for the append mode (iwiew >1)
716if iview>1 && strcmp(get(handles.num_NbSlice,'Visible'),'on')
717    NbSlice=str2num(get(handles.num_NbSlice,'String'));
[408]718end
719
[620]720%% default time unit
721TimeUnit='';
722% read  value set by the first series for the append mode (iwiew >1)
723if iview>1
724    TimeUnit=get(handles.TimeUnit,'String');
725end
726TimeSource='';
727Time=[];%default
728
729%%  read image documentation file if found
[408]730XmlData=[];
[620]731check_calib=0;
[525]732XmlFileName=find_imadoc(InputTable{iview,1},InputTable{iview,2},InputTable{iview,3},InputTable{iview,5});
733if ~isempty(XmlFileName)
[620]734    [XmlData,errormsg]=imadoc2struct(XmlFileName);
735    if ~isempty(errormsg)
736         msgbox_uvmat('WARNING',['error in reading ' XmlFileName ': ' errormsg]);
737    end
738    % read time if available
739    if isfield(XmlData,'Time')
740        Time=XmlData.Time;
741        TimeSource='xml';
742    end
743    if isfield(XmlData,'Camera')
744        if isfield(XmlData.Camera,'NbSlice')&& ~isempty(XmlData.Camera.NbSlice)
745            if iview>1 && ~isempty(NbSlice) && ~strcmp(NbSlice,XmlData.Camera.NbSlice)
746                msgbox_uvmat('WARNING','inconsistent number of slices with the first field series');
747            end
748            NbSlice=XmlData.Camera.NbSlice;% Nbre of slices from camera
[408]749        end
[620]750        if isfield(XmlData.Camera,'TimeUnit')&& ~isempty(XmlData.Camera.TimeUnit)
751            if iview>1 && ~isempty(TimeUnit) && ~strcmp(TimeUnit,XmlData.Camera.TimeUnit)
752                msgbox_uvmat('WARNING','inconsistent time unit with the first field series');
753            end
754            TimeUnit=XmlData.Camera.TimeUnit;
[408]755        end
[620]756    end
757    % number of slices
758    if isfield(XmlData,'GeometryCalib')
759        check_calib=1;
760        if isfield(XmlData.GeometryCalib,'SliceCoord')
761            siz=size(XmlData.GeometryCalib.SliceCoord);
762            if siz(1)>1
763                if iview>1 && ~isempty(NbSlice) && ~strcmp(NbSlice,siz(1))
764                    msgbox_uvmat('WARNING','inconsistent number of Z indices with the first field series');
[408]765                end
[620]766                NbSlice=siz(1);
[408]767            end
768        end
[620]769    end
770    set(handles.num_NbSlice,'String',num2str(NbSlice))
[408]771end
772
[620]773%% read timing and total frame number from the current file (movie files) if not already set by the xml file (prioritary)
774InputTable=get(handles.InputTable,'Data');
775% FileBase=fullfile(InputTable{iview,1},InputTable{iview,3});
776
777% case of movies
778% if strcmp(InputTable{iview,4},'*')
779if isempty(Time)
780    if ~isempty(VideoObject)
781        imainfo=get(VideoObject);
782        if isempty(j1_series); %frame index along i
783            Time=zeros(imainfo.NumberOfFrames+1,2);
784            Time(:,2)=(0:1/imainfo.FrameRate:(imainfo.NumberOfFrames)/imainfo.FrameRate)';
785        else
786            Time=[0;ones(size(i1_series,3)-1,1)]*(0:1/imainfo.FrameRate:(imainfo.NumberOfFrames)/imainfo.FrameRate);
787        end
788        TimeSource='video';
789        % set(han:dles.Dt_txt,'String',['Dt=' num2str(1000/imainfo.FrameRate) 'ms']);%display the elementary time interval in millisec
790        %     ColorType='truecolor';
791%     elseif ~isempty(imformats(regexprep(InputTable{iview,5},'^.',''))) || isequal(InputTable{iview,5},'.vol')%&& isequal(NomType,'*')% multi-frame image
792%         if ~isempty(InputTable{iview,2})
793%             imainfo=imfinfo(fullfile(InputTable{iview,1},InputTable{iview,2},[InputTable{iview,3} InputTable{iview,5}]));
794%         else
795%             imainfo=imfinfo([FileBase InputTable{iview,5}]);
796%         end
797%         %     ColorType=imainfo.ColorType;%='truecolor' for color images
798% %         if length(imainfo) >1 %case of image with multiple frames
799% %             nbfield=length(imainfo);
800% %             nbfield_j=1;
801% %         end
802    end
803end
804
[408]805%% update time table
[615]806if ~isempty(Time)
[523]807    TimeTable=get(handles.TimeTable,'Data');
[620]808    %     first_i=str2num(get(handles.num_first_i,'String'));
809    %     last_i=str2num(get(handles.num_last_i,'String'));
810    %     first_j=str2num(get(handles.num_first_j,'String'));
811    %     last_j=str2num(get(handles.num_last_j,'String'));
812    %     MinIndex_i=get(handles.MinIndex_i,'Data');
813    %     MinIndex_j=get(handles.MinIndex_j,'Data');
814    %     MaxIndex_i=get(handles.MaxIndex_i,'Data');
815    %     MaxIndex_j=get(handles.MaxIndex_j,'Data');
816    TimeTable{iview,1}=Time(MinIndex_i+1,MinIndex_j+1);
817    if size(Time)>=[first_i+1 first_j+1]
[615]818        TimeTable{iview,2}=Time(first_i+1,first_j+1);
[456]819    end
[620]820    if size(Time)>=[last_i+1 last_j+1]
821        TimeTable{iview,3}=Time(last_i+1,last_j+1);
[408]822    end
[620]823    if size(Time)>=[MaxIndex_i+1 MaxIndex_j+1];
824        TimeTable{iview,4}=Time(MaxIndex_i+1,MaxIndex_j+1);
[599]825    end
[620]826    set(handles.TimeTable,'Data',TimeTable)
[408]827end
[450]828   
[408]829
[472]830%% update the series info in 'UserData'
[408]831SeriesData=get(handles.series,'UserData');
832SeriesData.i1_series{iview}=i1_series;
833SeriesData.i2_series{iview}=i2_series;
834SeriesData.j1_series{iview}=j1_series;
835SeriesData.j2_series{iview}=j2_series;
836SeriesData.FileType{iview}=FileType;
[599]837SeriesData.FileInfo{iview}=FileInfo;
[615]838SeriesData.Time{iview}=Time;
[609]839if ~isempty(TimeSource)
840    SeriesData.TimeSource=TimeSource;
841end
[620]842% if ~isempty(TimeUnit)
843%     SeriesData.TimeUnit=TimeUnit;
844% end
[599]845if check_calib
[620]846    SeriesData.GeometryCalib{iview}=XmlData.GeometryCalib;
[599]847end
[408]848set(handles.series,'UserData',SeriesData)
849
[620]850%% update pair menus
851ListView=get(handles.ListView,'String');
852ListView{iview}=num2str(iview);
853set(handles.ListView,'String',ListView);
854set(handles.ListView,'Value',iview)
855update_mode(handles,i1_series,i2_series,j1_series,j2_series,Time)
856
[623]857%% enable j index visibility
858%check_jindex=~isempty(find(~cellfun(@isempty,SeriesData.j1_series))); %look for non empty j indices
859status_j='on';%default
860if isempty(find(~cellfun(@isempty,SeriesData.j1_series), 1)); % case of empty j indices
861    status_j='off'; % no j index needed
862elseif strcmp(get(handles.PairString,'Visible'),'on')
863        PairString=get(handles.PairString,'Data');       
864        check_burst=cellfun(@isempty,regexp(PairString,'^j'));%=0 for burst case, 1 otherwise
865 %   check_nopair=cellfun(@isempty,PairString);
866    if isempty(find(check_burst))% if all pair string begins by j (burst)
867        status_j='off'; % no j index needed for bust case
[521]868    end
[472]869end
[623]870enable_j(handles,status_j) % no j index needed
[472]871
[477]872%% display the set of existing files as an image
873set(handles.FileStatus,'Units','pixels')
874Position=get(handles.FileStatus,'Position');
875set(handles.FileStatus,'Units','normalized')
876xI=0.5:Position(3)-0.5;
877nbview=numel(SeriesData.i1_series);
[523]878pair_max=cell(1,nbview);
[477]879for iview=1:nbview
[523]880    pair_max{iview}=squeeze(max(SeriesData.i1_series{iview},[],1)); %max on pair index
[526]881    if (strcmp(get(handles.num_first_j,'Visible'),'off')&& size(pair_max{iview},2)~=1)
[525]882        pair_max{iview}=squeeze(max(pair_max{iview},[],1)); % consider only the i index
883    end
[523]884    index_min(iview)=find(pair_max{iview}>0, 1 );
885    index_max(iview)=find(pair_max{iview}>0, 1, 'last' );
[477]886end
887index_min=min(index_min);
888index_max=max(index_max);
889range_index=index_max-index_min+1;
890scale_y=Position(4)/nbview;
891scale_x=Position(3)/range_index;
892x=(0.5:range_index-0.5)*Position(3)/range_index;
893% y=(0.5:nbview-0.5)*Position(4)/nbview;
894range_y=max(1,floor(Position(4)/nbview));
[611]895CData=zeros(nbview*range_y,floor(Position(3)));
[477]896for iview=1:nbview
897    ind_y=1+(iview-1)*range_y:iview*range_y;
898    LineData=zeros(1,range_index);
[523]899    x_index=find(pair_max{iview}>0)-index_min+1;
[477]900    LineData(x_index)=1;
[591]901    if numel(x)>1
[477]902    LineData=interp1(x,LineData,xI,'nearest');
903    CData(ind_y,:)=ones(size(ind_y'))*LineData;
[591]904    end
[477]905end
906CData=cat(3,zeros(size(CData)),CData,zeros(size(CData)));
907set(handles.FileStatus,'CData',CData);
908
[441]909%% check for pair display
910check_pairs=0;
911for iview=1:numel(SeriesData.i2_series)
912    if ~isempty(SeriesData.i2_series{iview})||~isempty(SeriesData.j2_series{iview})
913        check_pairs=1;
914    end
915end
916if check_pairs
917    set(handles.Pairs,'Visible','on')
918    set(handles.PairString,'Visible','on')
919else
920    set(handles.Pairs,'Visible','off')
921    set(handles.PairString,'Visible','off')
922end
[408]923
[639]924
925%% enable field and veltype menus, in accordance with the current action
926ActionName_Callback([],[], handles)
927
[477]928%% set length of waitbar
929displ_time(handles)
930
[525]931%% set default options in menu 'Fields'
932switch FileType
933    case {'civx','civdata'}
[596]934        [FieldList,ColorList]=set_field_list('U','V','C');
[525]935        set(handles.FieldName,'String',[{'image'};FieldList;{'get_field...'}]);%standard menu for civx data
936        set(handles.FieldName,'Value',2) % set menu to 'velocity
937        set(handles.Coord_x,'Value',1);
938        set(handles.Coord_x,'String',{'X'});
939        set(handles.Coord_y,'Value',1);
940        set(handles.Coord_y,'String',{'Y'});
941    case 'netcdf'
[526]942        set(handles.FieldName,'Value',1)
943        set(handles.FieldName,'String',{'get_field...'})
944        if isempty(i2_series)
945            i2=[];
946        else
947            i2=i2_series(1,ref_j+1,ref_i+1);
948        end
949        if isempty(j1_series)
950            j1=[];j2=[];
951        else
952            j1=j1_series(1,ref_j+1,ref_i+1);
953            if isempty(j2_series)
954                j2=[];
955            else
956                j2=j2_series(1,ref_j+1,ref_i+1);
957            end
958        end
959        FileName=fullfile_uvmat(InputTable{iview,1},InputTable{iview,2},InputTable{iview,3},InputTable{iview,5},InputTable{iview,4},i1_series(1,ref_j+1,ref_i+1),i2,j1,j2);
[595]960%         hget_field=get_field(FileName);
961%         hhget_field=guidata(hget_field);
962%         get_field('RUN_Callback',hhget_field.RUN,[],hhget_field);
[525]963    otherwise
[526]964        set(handles.FieldName,'Value',1) % set menu to 'image'
965        set(handles.FieldName,'String',{'image'})
[525]966        set(handles.Coord_x,'Value',1);
967        set(handles.Coord_x,'String',{'AX'});
968        set(handles.Coord_y,'Value',1);
969        set(handles.Coord_y,'String',{'AY'});
970end
[408]971
[446]972%------------------------------------------------------------------------
973function num_first_i_Callback(hObject, eventdata, handles)
974%------------------------------------------------------------------------
975num_last_i_Callback(hObject, eventdata, handles)
[408]976
977%------------------------------------------------------------------------
[446]978function num_last_i_Callback(hObject, eventdata, handles)
979%------------------------------------------------------------------------
980SeriesData=get(handles.series,'UserData');
981if ~isfield(SeriesData,'Time')
982    SeriesData.Time{1}=[];
983end
984displ_time(handles);
985
986%------------------------------------------------------------------------
987function num_first_j_Callback(hObject, eventdata, handles)
988%------------------------------------------------------------------------
989 num_last_j_Callback(hObject, eventdata, handles)
990
991%------------------------------------------------------------------------
992function num_last_j_Callback(hObject, eventdata, handles)
993%------------------------------------------------------------------------
994first_j=str2num(get(handles.num_first_j,'String'));
995last_j=str2num(get(handles.num_last_j,'String'));
996ref_j=ceil((first_j+last_j)/2);
997set(handles.num_ref_j,'String', num2str(ref_j))
998num_ref_j_Callback(hObject, eventdata, handles)
999SeriesData=get(handles.series,'UserData');
1000if ~isfield(SeriesData,'Time')
1001    SeriesData.Time{1}=[];
1002end
1003displ_time(handles);
1004
[477]1005
[446]1006%------------------------------------------------------------------------
1007% ---- find the times corresponding to the first and last indices of a series
1008function displ_time(handles)
1009%------------------------------------------------------------------------
1010SeriesData=get(handles.series,'UserData');%
1011ref_i=[str2num(get(handles.num_first_i,'String')) str2num(get(handles.num_last_i,'String'))];
1012ref_j=[str2num(get(handles.num_first_j,'String')) str2num(get(handles.num_last_j,'String'))];
1013TimeTable=get(handles.TimeTable,'Data');
1014Pairs=get(handles.PairString,'Data');
1015for iview=1:size(TimeTable,1)
1016    if size(SeriesData.Time,1)<iview
1017        break
1018    end
1019    i1=ref_i;
1020    j1=ref_j;
1021    i2=ref_i;
1022    j2=ref_j;
1023    % case of pairs
1024    if ~isempty(Pairs{iview,1})
1025        r=regexp(Pairs{iview,1},'(?<mode>(Di=)|(Dj=)) -*(?<num1>\d+)\|(?<num2>\d+)','names');
1026        if isempty(r)
1027            r=regexp(Pairs{iview,1},'(?<num1>\d+)(?<mode>-)(?<num2>\d+)','names');
1028        end
1029        switch r.mode
1030            case 'Di='  %  case 'series(Di)')
1031                i1=ref_i-str2num(r.num1);
1032                i2=ref_i+str2num(r.num2);
1033            case 'Dj='  %  case 'series(Dj)'
1034                j1=ref_j-str2num(r.num1);
1035                j2=ref_j+str2num(r.num2);
1036            case '-'  % case 'bursts'
1037                j1=str2num(r.num1)*ones(size(ref_i));
1038                j2=str2num(r.num2)*ones(size(ref_i));
1039        end
1040    end
1041    TimeTable{iview,2}=[];
1042    TimeTable{iview,3}=[];
[615]1043    if size(SeriesData.Time{iview},1)>=i2(2)+1&&size(SeriesData.Time{iview},2)>=j2(2)+1
[446]1044        if isempty(ref_j)
[609]1045            time_first=(SeriesData.Time{iview}(i1(1)+1)+SeriesData.Time{iview}(i2(1)+1))/2;
1046            time_last=(SeriesData.Time{iview}(i1(2)+1)+SeriesData.Time{iview}(i2(2))+1)/2;
[446]1047        else
[609]1048            time_first=(SeriesData.Time{iview}(i1(1)+1,j1(1)+1)+SeriesData.Time{iview}(i2(1)+1,j2(1)+1))/2;
1049            time_last=(SeriesData.Time{iview}(i1(2)+1,j1(2)+1)+SeriesData.Time{iview}(i2(2)+1,j2(2)+1))/2;
[446]1050        end
1051        TimeTable{iview,2}=time_first; %TODO: take into account pairs
1052        TimeTable{iview,3}=time_last; %TODO: take into account pairs
1053    end
1054end
1055set(handles.TimeTable,'Data',TimeTable)
1056
[477]1057%% set the waitbar position with respect to the min and max in the series
1058for iview=1:numel(SeriesData.i1_series)
[526]1059    pair_max{iview}=squeeze(max(SeriesData.i1_series{iview},[],1)); %max on pair index
1060    if (strcmp(get(handles.num_first_j,'Visible'),'off')&& size(pair_max{iview},2)~=1)
1061        pair_max{iview}=squeeze(max(pair_max{iview},[],1)); % consider only the i index
1062    end
1063    pair_max{iview}=reshape(pair_max{iview},1,[]);
1064    index_min(iview)=find(pair_max{iview}>0, 1 );
1065    index_max(iview)=find(pair_max{iview}>0, 1, 'last' );
[477]1066end
1067[index_min,iview_min]=min(index_min);
1068[index_max,iview_max]=min(index_max);
[526]1069if size(SeriesData.i1_series{iview_min},2)==1% movie
[533]1070    index_first=ref_i(1);
1071    index_last=ref_i(2);
[526]1072else
[533]1073    index_first=(ref_i(1)-1)*(size(SeriesData.i1_series{iview_min},1))+ref_j(1)+1;
1074    index_last=(ref_i(2)-1)*(size(SeriesData.i1_series{iview_max},1))+ref_j(2)+1;
[526]1075end
[477]1076range=index_max-index_min+1;
1077coeff_min=(index_first-index_min)/range;
1078coeff_max=(index_last-index_min+1)/range;
[533]1079Position=get(handles.Waitbar,'Position');% position of the waitbar:= [ x,y, width, height]
[477]1080Position_status=get(handles.FileStatus,'Position');
1081Position(1)=coeff_min*Position_status(3)+Position_status(1);
1082Position(3)=Position_status(3)*(coeff_max-coeff_min);
1083set(handles.Waitbar,'Position',Position)
1084update_waitbar(handles.Waitbar,0)
1085
[446]1086%------------------------------------------------------------------------
[408]1087% --- Executes when selected cell(s) is changed in PairString.
1088function PairString_CellSelectionCallback(hObject, eventdata, handles)
1089%------------------------------------------------------------------------   
1090set(handles.ListView,'Value',eventdata.Indices(1))% detect the selected raw index
1091ListView_Callback ([],[],handles) % update the list of available pairs
1092
1093%------------------------------------------------------------------------
1094%------------------------------------------------------------------------
1095%  III - FUNCTIONS ASSOCIATED TO THE FRAME SET PAIRS
1096%------------------------------------------------------------------------
1097%------------------------------------------------------------------------
1098% --- Executes on selection change in ListView.
1099function ListView_Callback(hObject, eventdata, handles)
1100%------------------------------------------------------------------------   
1101SeriesData=get(handles.series,'UserData');
1102i2_series=[];
1103j2_series=[];
1104iview=get(handles.ListView,'Value');
1105if ~isempty(SeriesData.i2_series{iview})
1106    i2_series=SeriesData.i2_series{iview};
1107end
1108if ~isempty(SeriesData.j2_series{iview})
1109    j2_series=SeriesData.j2_series{iview};
1110end
1111update_mode(handles,SeriesData.i1_series{iview},SeriesData.i2_series{iview},...
1112    SeriesData.j1_series{iview},SeriesData.j2_series{iview},SeriesData.Time{iview})
1113
1114%------------------------------------------------------------------------
[2]1115% --- Executes on button press in mode.
[376]1116function mode_Callback(hObject, eventdata, handles)
[408]1117%------------------------------------------------------------------------       
[376]1118SeriesData=get(handles.series,'UserData');
[408]1119iview=get(handles.ListView,'Value');
[376]1120mode_list=get(handles.mode,'String');
[408]1121mode=mode_list{get(handles.mode,'Value')};
[376]1122if isequal(mode,'bursts')
1123    enable_i(handles,'On')
1124    enable_j(handles,'Off') %do not display j index scanning in burst mode (j is fixed by the burst choice)
1125else
1126    enable_i(handles,'On')
1127    enable_j(handles,'Off')
1128end
[408]1129fill_ListPair(handles,SeriesData.i1_series{iview},SeriesData.i2_series{iview},...
1130    SeriesData.j1_series{iview},SeriesData.j2_series{iview},SeriesData.Time{iview})
1131ListPairs_Callback([],[],handles)
[339]1132
[408]1133%-------------------------------------------------------------
1134% --- Executes on selection in ListPairs.
1135function ListPairs_Callback(hObject,eventdata,handles)
1136%------------------------------------------------------------
1137list_pair=get(handles.ListPairs,'String');%get the menu of image pairs
[441]1138if isempty(list_pair)
1139    string='';
1140else
1141    string=list_pair{get(handles.ListPairs,'Value')};
1142    string=regexprep(string,',.*','');%removes time indication (after ',')
1143end
[408]1144PairString=get(handles.PairString,'Data');
1145iview=get(handles.ListView,'Value');
1146PairString{iview,1}=string;
1147% report the selected pair string to the table PairString
1148set(handles.PairString,'Data',PairString)
[2]1149
[408]1150%------------------------------------------------------------------------
1151function num_ref_i_Callback(hObject, eventdata, handles)
1152%------------------------------------------------------------------------
1153mode_list=get(handles.mode,'String');
1154mode=mode_list{get(handles.mode,'Value')};
1155SeriesData=get(handles.series,'UserData');
1156iview=get(handles.ListView,'Value');
1157fill_ListPair(handles,SeriesData.i1_series{iview},SeriesData.i2_series{iview},...
[446]1158    SeriesData.j1_series{iview},SeriesData.j2_series{iview},SeriesData.Time{iview});% update the menu of pairs depending on the available netcdf files
[408]1159ListPairs_Callback([],[],handles)
[2]1160
[408]1161%------------------------------------------------------------------------
1162function num_ref_j_Callback(hObject, eventdata, handles)
1163%------------------------------------------------------------------------
1164num_ref_i_Callback(hObject, eventdata, handles)
[2]1165
[408]1166%------------------------------------------------------------------------
1167function update_mode(handles,i1_series,i2_series,j1_series,j2_series,time)
1168%------------------------------------------------------------------------   
[521]1169% check_burst=0;
1170if isempty(j2_series)% no j pair
[408]1171    if isempty(i2_series)
1172        set(handles.mode,'Value',1)
[521]1173        set(handles.mode,'String',{''})% no pair menu to display
1174    else   
1175        set(handles.mode,'Value',1)
1176        set(handles.mode,'String',{'series(Di)'}) % pair menu with only option Di
[408]1177    end
[521]1178else %existence of j pairs
1179    pair_max=squeeze(max(i1_series,[],1)); %max on pair index
1180    j_max=max(pair_max,[],1);
1181    MaxIndex_i=max(find(j_max))-1;% max ref index i
1182    MinIndex_i=min(find(j_max))-1;% min ref index i
1183    i_max=max(pair_max,[],2);
1184    MaxIndex_j=max(find(i_max))-1;% max ref index i
1185    MinIndex_j=min(find(i_max))-1;% min ref index i
1186    if MaxIndex_j==MinIndex_j
[408]1187        set(handles.mode,'Value',1);
[521]1188        set(handles.mode,'String',{'bursts'})
1189%         check_burst=1;
1190    elseif MaxIndex_i==MinIndex_i
1191        set(handles.mode,'Value',1);
1192        set(handles.mode,'String',{'series(Dj)'})
[456]1193    else
[521]1194        set(handles.mode,'String',{'bursts';'series(Dj)'})
1195        if (MaxIndex_j-MinIndex_j)>10
1196            set(handles.mode,'Value',2);%set mode to series(Dj) if more than 10 j values
1197        else
1198            set(handles.mode,'Value',1);
1199%             check_burst=1;
1200        end
[456]1201    end
[408]1202end
1203fill_ListPair(handles,i1_series,i2_series,j1_series,j2_series,time)
1204ListPairs_Callback([],[],handles)
[2]1205
1206%--------------------------------------------------------------
[620]1207% determine the menu for pairstring depending on existing netcdf files
[408]1208% with the reference indices num_ref_i and num_ref_j
[2]1209%----------------------------------------------------------------
[408]1210function fill_ListPair(handles,i1_series,i2_series,j1_series,j2_series,time)
1211
[2]1212mode_list=get(handles.mode,'String');
[408]1213mode=mode_list{get(handles.mode,'Value')};
1214ref_i=str2num(get(handles.num_ref_i,'String'));
1215if isempty(ref_i)
1216    ref_i=1;
1217end
[472]1218if strcmp(get(handles.num_ref_j,'Visible'),'on')
1219    ref_j=str2num(get(handles.num_ref_j,'String'));
1220    if isempty(ref_j)
1221        ref_j=1;
1222    end
1223else
[408]1224    ref_j=1;
1225end
[2]1226TimeUnit=get(handles.TimeUnit,'String');
1227if length(TimeUnit)>=1
1228    dtunit=['m' TimeUnit];
1229else
1230    dtunit='e-03';
1231end
[339]1232
1233displ_pair={};
[118]1234if strcmp(mode,'series(Di)')
[339]1235    if isempty(i2_series)
1236        msgbox_uvmat('ERROR','no i1-i2 pair available')
1237        return
1238    end
1239    diff_i=i2_series-i1_series;
1240    min_diff=min(diff_i(diff_i>0));
1241    max_diff=max(diff_i(diff_i>0));
1242    for ipair=min_diff:max_diff
1243        if numel(diff_i(diff_i==ipair))>0
[408]1244            pair_string=['Di= ' num2str(-floor(ipair/2)) '|' num2str(ceil(ipair/2)) ];
1245            if ~isempty(time)
[472]1246                if ref_i<=floor(ipair/2)
1247                    ref_i=floor(ipair/2)+1;% shift ref_i to get the first pair
1248                end
[408]1249                Dt=time(ref_i+ceil(ipair/2),ref_j)-time(ref_i-floor(ipair/2),ref_j);
1250                pair_string=[pair_string ', Dt=' num2str(Dt) ' ' dtunit];
1251            end
1252            displ_pair=[displ_pair;{pair_string}];
[339]1253        end
1254    end
1255    if ~isempty(displ_pair)
1256        displ_pair=[displ_pair;{'Di=*|*'}];
1257    end
1258elseif strcmp(mode,'series(Dj)')
1259    if isempty(j2_series)
1260        msgbox_uvmat('ERROR','no j1-j2 pair available')
1261        return
1262    end
1263    diff_j=j2_series-j1_series;
1264    min_diff=min(diff_j(diff_j>0));
1265    max_diff=max(diff_j(diff_j>0));
1266    for ipair=min_diff:max_diff
1267        if numel(diff_j(diff_j==ipair))>0
[408]1268            pair_string=['Dj= ' num2str(-floor(ipair/2)) '|' num2str(ceil(ipair/2)) ];
1269            if ~isempty(time)
[472]1270                if ref_j<=floor(ipair/2)
1271                    ref_j=floor(ipair/2)+1;% shift ref_i to get the first pair
1272                end
[408]1273                Dt=time(ref_i,ref_j+ceil(ipair/2))-time(ref_i,ref_j-floor(ipair/2));
1274                pair_string=[pair_string ', Dt=' num2str(Dt) ' ' dtunit];
1275            end
1276            displ_pair=[displ_pair;{pair_string}];
[339]1277        end
1278    end
1279    if ~isempty(displ_pair)
1280        displ_pair=[displ_pair;{'Dj=*|*'}];
1281    end
1282elseif strcmp(mode,'bursts')
1283    if isempty(j2_series)
1284        msgbox_uvmat('ERROR','no j1-j2 pair available')
1285        return
1286    end
1287    diff_j=j2_series-j1_series;
1288    min_j1=min(j1_series(j1_series>0));
1289    max_j1=max(j1_series(j1_series>0));
1290    min_j2=min(j2_series(j2_series>0));
1291    max_j2=max(j2_series(j2_series>0));
1292    for pair1=min_j1:min(max_j1,min_j1+20)
1293        for pair2=min_j2:min(max_j2,min_j2+20)
1294        if numel(j1_series(j1_series==pair1))>0 && numel(j2_series(j2_series==pair2))>0
1295            displ_pair=[displ_pair;{['j= ' num2str(pair1) '-' num2str(pair2)]}];
1296        end
1297        end
1298    end
1299    if ~isempty(displ_pair)
1300        displ_pair=[displ_pair;{'j=*-*'}];
1301    end
1302end
[472]1303set(handles.num_ref_i,'String',num2str(ref_i)) % update ref_i and ref_j
1304set(handles.num_ref_j,'String',num2str(ref_j))
[408]1305
1306%% display list of pairstring
1307displ_pair_list=get(handles.ListPairs,'String');
[339]1308NewVal=[];
1309if ~isempty(displ_pair_list)
[408]1310Val=get(handles.ListPairs,'Value');
[419]1311NewVal=find(strcmp(displ_pair_list{Val},displ_pair),1);% look at the previous display in the new menu displ_pï¿œir
[339]1312end
1313if ~isempty(NewVal)
[408]1314    set(handles.ListPairs,'Value',NewVal)
[339]1315else
[408]1316    set(handles.ListPairs,'Value',1)
[339]1317end
[408]1318set(handles.ListPairs,'String',displ_pair)
[339]1319
[408]1320%-------------------------------------
1321function enable_i(handles,state)
1322set(handles.i_txt,'Visible',state)
1323set(handles.num_first_i,'Visible',state)
1324set(handles.num_last_i,'Visible',state)
1325set(handles.num_incr_i,'Visible',state)
1326set(handles.num_ref_i,'Visible',state)
1327set(handles.ref_i_text,'Visible',state)
[2]1328
[408]1329%-----------------------------------
1330function enable_j(handles,state)
1331set(handles.j_txt,'Visible',state)
1332set(handles.num_first_j,'Visible',state)
1333set(handles.num_last_j,'Visible',state)
1334set(handles.num_incr_j,'Visible',state)
1335set(handles.num_ref_j,'Visible',state)
1336set(handles.ref_j_text,'Visible',state)
[620]1337set(handles.MinIndex_j,'Visible',state)
1338set(handles.MaxIndex_j,'Visible',state)
[41]1339
[408]1340
[446]1341%%%%%%%%%%%%%%%%%%%%
1342%%  MAIN ActionName FUNCTIONS
1343%%%%%%%%%%%%%%%%%%%%
[41]1344%------------------------------------------------------------------------
[2]1345% --- Executes on button press in RUN.
[635]1346%------------------------------------------------------------------------
[2]1347function RUN_Callback(hObject, eventdata, handles)
[595]1348
[635]1349%% settings of the button RUN
1350set(handles.RUN,'BusyAction','queue');% activation of STOP button will set BusyAction to 'cancel'
1351%set(0,'CurrentFigure',handles.series); % display the GUI series
1352set(handles.RUN, 'Enable','Off')% avoid further RUN action until the current one is finished
1353set(handles.RUN,'BackgroundColor',[1 1 0])%show activation of RUN by yellow color
[456]1354drawnow
[595]1355
[635]1356%% read the data on the GUI series
1357Param=read_GUI_series(handles);%displayed parameters
1358SeriesData=get(handles.series,'UserData');%hidden parameters
1359
1360%% create the output data directory if needed
1361if isfield(Param,'OutputSubDir')
1362    SubDirOut=[get(handles.OutputSubDir,'String') Param.OutputDirExt];
1363    SubDirOutNew=SubDirOut;
1364    detect=exist(fullfile(Param.InputTable{1,1},SubDirOutNew),'dir');% test if  the dir  already exist
1365    check_create=1; %need to create the result directory by default
1366    while detect
1367        answer=msgbox_uvmat('INPUT_Y-N',['use existing ouput directory: ' fullfile(Param.InputTable{1,1},SubDirOutNew) ', possibly delete previous data']);
1368        if strcmp(answer,'Cancel')
1369            errormsg='Cancel';
1370            return
1371        elseif strcmp(answer,'Yes')
1372            detect=0;
1373            check_create=0;
1374        else
1375            r=regexp(SubDirOutNew,'(?<root>.*\D)(?<num1>\d+)$','names');%detect whether name ends by a number
1376            if isempty(r)
1377                r(1).root=[SubDirOutNew '_'];
1378                r(1).num1='0';
1379            end
1380            SubDirOutNew=[r(1).root num2str(str2num(r(1).num1)+1)];%increment the index by 1 or put 1
1381            detect=exist(fullfile(Param.InputTable{1,1},SubDirOutNew),'dir');% test if  the dir  already exists
1382            check_create=1;
1383        end
[599]1384    end
[635]1385    Param.OutputDirExt=regexprep(SubDirOutNew,Param.OutputSubDir,'');
1386    Param.OutputRootFile=Param.InputTable{1,3};% the first sorted RootFile taken for output
1387    set(handles.OutputDirExt,'String',Param.OutputDirExt)
1388    OutputDir=fullfile(Param.InputTable{1,1},[Param.OutputSubDir Param.OutputDirExt]);% full name (with path) of output directory
1389    if check_create    % create output directory if it does not exist
1390        [tild,msg1]=mkdir(OutputDir);
1391        if ~strcmp(msg1,'')
1392            errormsg=['cannot create ' OutputDir ': ' msg1];%error message for directory creation
1393            return
1394        end
[595]1395    end
[635]1396    OutputNomType=nomtype2pair(Param.InputTable{1,4});% nomenclature for output files
1397    DirXml=fullfile(OutputDir,'0_XML');
1398    if ~exist(DirXml,'dir')
1399        [tild,msg1]=mkdir(DirXml);
1400        if ~strcmp(msg1,'')
1401            msgbox_uvmat('ERROR',['cannot create ' DirXml ': ' msg1]);%error message for directory creation
1402            return
1403        end
1404    end
[595]1405end
1406
[635]1407%% select the Action mode, 'local', 'background' or 'cluster' (if available)
1408RunMode='local';%default (needed for first opening of the GUI series)
1409if isfield(Param.Action,'RunMode')
1410    RunMode=Param.Action.RunMode;
[601]1411end
[595]1412ActionExt='.m';%default
[635]1413if isfield(Param.Action,'ActionExt')
1414    ActionExt=Param.Action.ActionExt;% '.m' or '.sh' (compiled)
[595]1415end
[635]1416ActionName=Param.Action.ActionName;
1417ActionPath=Param.Action.ActionPath;
[594]1418path_series=fileparts(which('series'));
[472]1419
[595]1420%% create the Action fct handle if RunMode option = 'local'
[594]1421if strcmp(RunMode,'local')
1422    if ~isequal(ActionPath,path_series)
1423        eval(['spath=which(''' ActionName ''');']) %spath = current path of the selected function ACTION
1424        if ~exist(ActionPath,'dir')
1425            msgbox_uvmat('ERROR',['The prescribed function path ' ActionPath ' does not exist']);
1426            return
1427        end
1428        if ~isequal(spath,ActionPath)
1429            addpath(ActionPath)% add the prescribed path if not the current one
1430        end
1431    end
1432    eval(['h_fun=@' ActionName ';'])%create a function handle for ACTION
1433    if ~isequal(ActionPath,path_series)
1434        rmpath(ActionPath)% add the prescribed path if not the current one
1435    end
1436end
1437
1438%% Get RunTime code from the file PARAM.xml (needed to run compiled functions)
1439errormsg='';%default error message
1440xmlfile=fullfile(path_series,'PARAM.xml');
1441test_batch=0;%default: ,no batch mode available
1442if ~exist(xmlfile,'file')
1443    [success,message]=copyfile(fullfile(path_series,'PARAM.xml.default'),xmlfile);
1444end
1445RunTime='';
1446if strcmp(ActionExt,'.sh')
1447    if exist(xmlfile,'file')
1448        s=xml2struct(xmlfile);
[598]1449        if strcmp(RunMode,'cluster_oar') && isfield(s,'BatchParam')
[594]1450            if isfield(s.BatchParam,'RunTime')
1451                RunTime=s.BatchParam.RunTime;
1452            end
1453            if isfield(s.BatchParam,'NbCore')
1454                NbCore=s.BatchParam.NbCore;
1455            end
1456        elseif (strcmp(RunMode,'background')||strcmp(RunMode,'local')) && isfield(s,'RunParam')
1457            if isfield(s.RunParam,'RunTime')
1458                RunTime=s.RunParam.RunTime;
1459            end
1460            if isfield(s.RunParam,'NbCore')
1461                NbCore=s.RunParam.NbCore;
1462            end
1463        end
1464    end
[598]1465    if isempty(RunTime) && strcmp(RunMode,'cluster_oar')
[594]1466        msgbox_uvmat('ERROR','RunTime name not found in PARAM.xml, compiled version .sh cannot run on cluster')
1467        return
1468    end
1469end
[595]1470
1471%% set nbre of cluster cores and processes
1472switch RunMode
1473    case {'local','background'}
1474        NbCore=1;% no need to split the calculation
1475    case 'cluster_oar'
[635]1476        if strcmp(Param.Action.ActionExt,'.m')% case of Matlab function (uncompiled)
[595]1477            NbCore=1;% one core used only (limitation of Matlab licences)
1478            msgbox_uvmat('WARNING','Number of cores =1: select the compiled version civ_matlab.sh for multi-core processing');
1479            extra_oar='';
1480        else
[591]1481            answer=inputdlg({'Number of cores (max 36)','extra oar options'},'oarsub parameter',1,{'12',''});
1482            NbCore=str2double(answer{1});
[595]1483            extra_oar=answer{2};
1484        end
1485end
[635]1486if ~isfield(Param.IndexRange,'NbSlice')
1487    Param.IndexRange.NbSlice=[];
[595]1488end
[635]1489if isempty(Param.IndexRange.NbSlice)
[591]1490    NbProcess=NbCore;% choose one process per core
[594]1491else
[635]1492    NbProcess=Param.IndexRange.NbSlice;% the nbre of run processes is equal to the number of slices
[595]1493    NbCore=min(NbCore,NbProcess);% at least one process per core
[591]1494end
[602]1495       
[635]1496%% get the set of reference field indices
1497first_i=1;
1498last_i=1;
1499incr_i=1;
1500first_j=1;
1501last_j=1;
1502incr_j=1;
1503if isfield(Param.IndexRange,'first_i')
1504    first_i=Param.IndexRange.first_i;
1505    incr_i=Param.IndexRange.incr_i;
1506    last_i=Param.IndexRange.last_i;
1507end
1508if isfield(Param.IndexRange,'first_j')
1509    first_j=Param.IndexRange.first_j;
1510    last_j=Param.IndexRange.last_j;
1511    incr_j=Param.IndexRange.incr_j;
1512end
1513if last_i < first_i || last_j < first_j
1514    msgbox_uvmat('ERROR', 'series/Run_Callback:last field index must be larger or equal to the first one')
[609]1515    set(handles.RUN, 'Enable','On'),
1516    set(handles.RUN,'BackgroundColor',[1 0 0])
1517    return
[635]1518end
1519%incr_i must be defined, =1 by default, if NbSlice is active
1520if isempty(incr_i)&& ~isempty(Param.IndexRange.NbSlice)
1521    incr_i=1;
1522    set(handles.num_incr_i,'String','1')
1523end
1524if isempty(incr_i)
1525    if isempty(incr_j)
1526        [ref_j,ref_i]=find(squeeze(SeriesData.i1_series{1}(1,:,:)));
1527        ref_j=ref_j(ref_j>=first_j & ref_j<=last_j);
1528        ref_i=ref_i(ref_i>=first_i & ref_i<=last_i);
1529        ref_j=ref_j-1;
1530        ref_i=ref_i-1;
1531    else
1532        ref_j=first_j:incr_j:last_j;
1533        [tild,ref_i]=find(squeeze(SeriesData.i1_series{1}(1,:,:)));
1534        ref_i=ref_i-1;
1535        ref_i=ref_i(ref_i>=first_i & ref_i<=last_i);
1536    end
[594]1537else
[635]1538    ref_i=first_i:incr_i:last_i;
1539    if isempty(incr_j)
1540    [ref_j,tild]=find(squeeze(SeriesData.i1_series{1}(1,:,:)));
1541    ref_j=ref_j-1;
1542    ref_j=ref_j(ref_j>=first_j & ref_j<=last_j);
1543    else
1544        ref_j=first_j:incr_j:last_j;
1545    end
[594]1546end
[635]1547BlockLength=ceil(numel(ref_i)/NbProcess);
1548nbfield_j=numel(ref_j);
[594]1549
[604]1550%% record nbre of output files and starting time for computation for status
[602]1551StatusData=get(handles.status,'UserData');
[605]1552if isfield(StatusData,'OutputFileMode')
[604]1553    switch StatusData.OutputFileMode
1554        case 'NbInput'
[635]1555            StatusData.NbOutputFile=numel(ref_i)*nbfield_j;
[604]1556        case 'NbInput_i'
[635]1557            StatusData.NbOutputFile=numel(ref_i);
[604]1558        case 'NbSlice'   
1559            StatusData.NbOutputFile=str2num(get(handles.num_NbSlice,'String'));
1560    end
[605]1561end
[604]1562StatusData.TimeStart=now;
1563set(handles.status,'UserData',StatusData)
[602]1564
[595]1565%% direct processing on the current Matlab session
1566if strcmp (RunMode,'local')
1567    for iprocess=1:NbProcess
[635]1568        if isempty(Param.IndexRange.NbSlice)
1569            %Param.IndexRange.first_i=first_i+(iprocess-1)*BlockLength*incr_i;
1570            Param.IndexRange.first_i=ref_i(1+(iprocess-1)*BlockLength);
1571            if Param.IndexRange.first_i>last_i
[598]1572                break
1573            end
[635]1574            Param.IndexRange.last_i=min(ref_i(iprocess*BlockLength),last_i);
1575            %Param.IndexRange.last_i=min(first_i+(iprocess)*BlockLength*incr_i-1,last_i);
1576        else %multislices (then incr_i is not empty)
1577             Param.IndexRange.first_i= first_i+incr_i*(iprocess-1);
1578             Param.IndexRange.incr_i=incr_i*Param.IndexRange.NbSlice;
[595]1579        end
[635]1580        if isfield(Param,'OutputSubDir')
1581        t=struct2xml(Param);
[595]1582        t=set(t,1,'name','Series');
[635]1583        filexml=fullfile_uvmat(DirXml,'',Param.InputTable{1,3},'.xml',OutputNomType,...
1584            Param.IndexRange.first_i,Param.IndexRange.last_i,first_j,last_j);
[595]1585        save(t,filexml);
[635]1586        end
[595]1587        switch ActionExt
1588            case '.m'
[635]1589                h_fun(Param);
[595]1590            case '.sh'
1591                switch computer
1592                    case {'PCWIN','PCWIN64'} %Windows system
1593                        filexml=regexprep(filexml,'\\','\\\\');% add '\' so that '\' are left as characters
[598]1594                        system([fullfile(ActionPath,[ActionName '.sh']) ' ' RunTime ' ' filexml]);% TODO: adapt to DOS system
[595]1595                    case {'GLNX86','GLNXA64','MACI64'}%Linux  system
[598]1596                        system([fullfile(ActionPath,[ActionName '.sh']) ' ' RunTime ' ' filexml]);
[591]1597                end
[472]1598        end
[595]1599    end
1600elseif strcmp(get(handles.OutputDirExt,'Visible'),'off')
1601    msgbox_uvmat('ERROR',['no output file for Action ' ActionName ', use run mode = local']);% a output dir is needed for background option
1602    return
1603else
1604    %% processing on a different session of the same computer (background) or cluster, create executable files
1605    batch_file_list=cell(NbProcess,1);% initiate the list of executable files
[635]1606    DirBat=fullfile(OutputDir,'0_EXE');
1607    switch computer
1608        case {'PCWIN','PCWIN64'} %Windows system
1609            ExeExt='.bat';
1610        case {'GLNX86','GLNXA64','MACI64'}%Linux  system
1611           ExeExt='.sh';
1612    end
[595]1613    %create subdirectory for executable files
1614    if ~exist(DirBat,'dir')
1615        [tild,msg1]=mkdir(DirBat);
1616        if ~strcmp(msg1,'')
1617            msgbox_uvmat('ERROR',['cannot create ' DirBat ': ' msg1]);%error message for directory creation
1618            return
[472]1619        end
[595]1620    end
1621    %create subdirectory for log files
1622    DirLog=fullfile(OutputDir,'0_LOG');
1623    if ~exist(DirLog,'dir')
1624        [tild,msg1]=mkdir(DirLog);
1625        if ~strcmp(msg1,'')
1626            msgbox_uvmat('ERROR',['cannot create ' DirLog ': ' msg1]);%error message for directory creation
1627            return
1628        end
1629    end
1630    for iprocess=1:NbProcess
[635]1631        if isempty(Param.IndexRange.NbSlice)% process by blocks of i index
1632            Param.IndexRange.first_i=first_i+(iprocess-1)*BlockLength*incr_i;
1633            if Param.IndexRange.first_i>last_i
[598]1634                NbProcess=iprocess-1;
1635                break% leave the loop, we are at the end of the calculation
1636            end
[635]1637            Param.IndexRange.last_i=min(last_i,first_i+(iprocess)*BlockLength*incr_i-1);
[595]1638        else% process by slices of i index if NbSlice is defined, computation in a single process if NbSlice =1
[635]1639            Param.IndexRange.first_i= first_i+iprocess-1;
1640            Param.IndexRange.incr_i=incr_i*Param.IndexRange.NbSlice;
[595]1641        end
1642       
1643        % create, fill and save the xml parameter file
[635]1644        t=struct2xml(Param);
[595]1645        t=set(t,1,'name','Series');
[635]1646        filexml=fullfile_uvmat(DirXml,'',Param.InputTable{1,3},'.xml',OutputNomType,...
1647            Param.IndexRange.first_i,Param.IndexRange.last_i,first_j,last_j);
[595]1648        save(t,filexml);% save the parameter file
1649       
1650        %create the executable file
[635]1651         filebat=fullfile_uvmat(DirBat,'',Param.InputTable{1,3},ExeExt,OutputNomType,...
1652           Param.IndexRange.first_i,Param.IndexRange.last_i,first_j,last_j);
[595]1653        batch_file_list{iprocess}=filebat;
1654        [fid,message]=fopen(filebat,'w');% create the executable file
1655        if isequal(fid,-1)
1656            msgbox_uvmat('ERROR', ['creation of .bat file: ' message]);
1657            return
1658        end
1659       
1660        % set the log file name
[635]1661        filelog=fullfile_uvmat(DirLog,'',Param.InputTable{1,3},'.log',OutputNomType,...
1662            Param.IndexRange.first_i,Param.IndexRange.last_i,first_j,last_j);
[595]1663       
1664        % fill and save the executable file
1665        switch ActionExt
1666            case '.m'% Matlab function
1667                switch computer
1668                    case {'GLNX86','GLNXA64','MACI64'}
1669                        cmd=[...
1670                            '#!/bin/bash \n'...
1671                            '. /etc/sysprofile \n'...
1672                            'matlab -nodisplay -nosplash -nojvm -logfile ''' filelog ''' <<END_MATLAB \n'...
1673                            'addpath(''' path_series '''); \n'...
[635]1674                            'addpath(''' Param.Action.ActionPath '''); \n'...
1675                            '' Param.Action.ActionName  '( ''' filexml '''); \n'...
[595]1676                            'exit \n'...
1677                            'END_MATLAB \n'];
1678                        fprintf(fid,cmd);%fill the executable file with the  char string cmd
1679                        fclose(fid);% close the executable file
1680                        system(['chmod +x ' filebat]);% set the file to executable
1681                    case {'PCWIN','PCWIN64'}
1682                        text_matlabscript=['matlab -automation -logfile ' regexprep(filelog,'\\','\\\\')...
1683                            ' -r "addpath(''' regexprep(path_series,'\\','\\\\') ''');'...
[635]1684                            'addpath(''' regexprep(Param.Action.ActionPath,'\\','\\\\') ''');'...
1685                            '' Param.Action.ActionName  '( ''' regexprep(filexml,'\\','\\\\') ''');exit"'];
[595]1686                        fprintf(fid,text_matlabscript);%fill the executable file with the  char string cmd
1687                        fclose(fid);% close the executable file
[591]1688                end
[595]1689            case '.sh' % compiled Matlab function
1690                switch computer
1691                    case {'GLNX86','GLNXA64','MACI64'}
1692                        cmd=['#!/bin/bash \n '...
1693                            '#$ -cwd \n '...
1694                            'hostname && date \n '...
1695                            'umask 002 \n'...
[598]1696                            fullfile(ActionPath,[ActionName '.sh']) ' ' RunTime ' ' filexml];%allow writting access to created files for user group
[595]1697                        fprintf(fid,cmd);%fill the executable file with the  char string cmd
1698                        fclose(fid);% close the executable file
1699                        system(['chmod +x ' filebat]);% set the file to executable
[591]1700                       
[595]1701                    case {'PCWIN','PCWIN64'}    %       TODO: adapt to Windows system
1702                        %                                 cmd=['matlab -automation -logfile ' regexprep(filelog,'\\','\\\\')...
1703                        %                                     ' -r "addpath(''' regexprep(path_series,'\\','\\\\') ''');'...
[635]1704                        %                                     'addpath(''' regexprep(Param.Action.ActionPath,'\\','\\\\') ''');'...
1705                        %                                     '' Param.Action.ActionName  '( ''' regexprep(filexml,'\\','\\\\') ''');exit"'];
[595]1706                        fprintf(fid,cmd);
[591]1707                        fclose(fid);
[595]1708                        %                               dos([filebat ' &']);
[591]1709                end
1710        end
[595]1711    end
[472]1712end
1713
[595]1714%% launch the executable files for background or cluster processing
1715switch RunMode
1716    case 'background'
1717        for iprocess=1:NbProcess
[604]1718            system([batch_file_list{iprocess} ' &'])% directly execute the command file for each process
[595]1719        end
1720    case 'cluster_oar' % option 'oar-parexec' used
1721        %create subdirectory for oar command and log files
1722        DirOAR=fullfile(OutputDir,'0_OAR');
1723        if ~exist(DirOAR,'dir')
1724            [tild,msg1]=mkdir(DirOAR);
1725            if ~strcmp(msg1,'')
1726                msgbox_uvmat('ERROR',['cannot create ' DirOAR ': ' msg1]);%error message for directory creation
1727                return
1728            end
1729        end
[602]1730        max_walltime=3600*12; % 12h max total calculation
1731        walltime_onejob=600;%seconds, max estimated time for asingle file index value
[595]1732        filename_joblist=fullfile(DirOAR,'job_list.txt');%create name of the global executable file
1733        fid=fopen(filename_joblist,'w');
1734        for p=1:length(batch_file_list)
[598]1735            fprintf(fid,[batch_file_list{p} '\n']);% list of exe files
[595]1736        end
1737        fclose(fid);
1738        system(['chmod +x ' filename_joblist]);% set the file to executable
1739        oar_command=['oarsub -n CIVX '...
1740            '-t idempotent --checkpoint ' num2str(walltime_onejob+60) ' '...
1741            '-l /core=' num2str(NbCore) ','...
[602]1742            'walltime=' datestr(min(1.05*walltime_onejob/86400*max(NbProcess*BlockLength*nbfield_j,NbCore)/NbCore,max_walltime/86400),13) ' '...
[595]1743            '-E ' regexprep(filename_joblist,'\.txt\>','.stderr') ' '...
1744            '-O ' regexprep(filename_joblist,'\.txt\>','.stdout') ' '...
1745            extra_oar ' '...
1746            '"oar-parexec -s -f ' filename_joblist ' '...
1747            '-l ' filename_joblist '.log"\n'];
1748        filename_oarcommand=fullfile(DirOAR,'oar_command');
1749        fid=fopen(filename_oarcommand,'w');
1750        fprintf(fid,oar_command);
1751        fclose(fid);
1752        fprintf(oar_command);% display in command line
1753        %system(['chmod +x ' oar_command]);% set the file to executable
1754        system(oar_command);     
1755end
1756
1757%% reset the GUI series
1758update_waitbar(handles.Waitbar,1); % put the waitbar to end position to indicate launching is finished
[446]1759set(handles.RUN, 'Enable','On')
1760set(handles.RUN,'BackgroundColor',[1 0 0])
[591]1761set(handles.RUN, 'Value',0)
[2]1762
[446]1763%------------------------------------------------------------------------
1764function STOP_Callback(hObject, eventdata, handles)
1765%------------------------------------------------------------------------
1766set(handles.RUN, 'BusyAction','cancel')
1767set(handles.RUN,'BackgroundColor',[1 0 0])
1768set(handles.RUN,'enable','on')
[591]1769set(handles.RUN, 'Value',0)
[446]1770
[472]1771% %------------------------------------------------------------------------
1772% % --- Executes on button press in BIN.
1773% function BIN_Callback(hObject, eventdata, handles)
1774% %------------------------------------------------------------------------
1775%     cmd=['#!/bin/bash \n '...
1776%         '#$ -cwd \n '...
1777%         'hostname && date \n '...
1778%         'umask 002 \n'...
1779%         Param.xml.CivmBin ' ' Param.xml.RunTime ' ' filename_xml ' ' OutputFile '.nc'];
1780%     
[446]1781%------------------------------------------------------------------------
[456]1782% --- Main launch command, called by RUN and BATCH
[591]1783
[446]1784%------------------------------------------------------------------------
[635]1785% --- read parameters from the GUI series
1786%------------------------------------------------------------------------
1787function Param=read_GUI_series(handles)
[594]1788
[635]1789%% read raw parameters from the GUI series
1790Param=read_GUI(handles.series);
[446]1791
[635]1792%% clean the output structure by removing unused information
1793if isfield(Param,'Pairs')
1794    Param=rmfield(Param,'Pairs'); %info Pairs not needed for output
[408]1795end
[635]1796Param.IndexRange=rmfield(Param.IndexRange,'TimeTable');
1797empty_line=false(size(Param.InputTable,1),1);
1798for iline=1:size(Param.InputTable,1)
1799    empty_line(iline)=isequal(Param.InputTable(iline,1:3),{'','',''});
[595]1800end
[635]1801Param.InputTable(empty_line,:)=[];
[408]1802
[41]1803%------------------------------------------------------------------------
[446]1804% --- Executes on selection change in ActionName.
1805function ActionName_Callback(hObject, eventdata, handles)
[41]1806%------------------------------------------------------------------------
[591]1807%% stop any ongoing series processing
1808if isequal(get(handles.RUN,'Value'),1)
1809    answer= msgbox_uvmat('INPUT_Y-N','stop current Action process?');
1810    if strcmp(answer,'Yes')
1811        STOP_Callback(hObject, eventdata, handles)
1812    else
1813        return
1814    end
1815end
[598]1816set(handles.ActionName,'BackgroundColor',[1 1 0])
1817drawnow
[591]1818
1819%% get Action name and path
1820nb_builtin_ACTION=4; %nbre of functions initially proposed in the menu ActionName (as defined in the Opening fct of series)
1821ActionList=get(handles.ActionName,'String');% list menu fields
1822ActionIndex=get(handles.ActionName,'Value');
[620]1823if ~isequal(ActionIndex,1)% if we are not just opening series
[591]1824    InputTable=get(handles.InputTable,'Data');
1825    if isempty(InputTable{1,4})
1826        msgbox_uvmat('ERROR','no input file available: use Open in the menu bar')
1827        return
1828    end
1829end
1830ActionName= ActionList{get(handles.ActionName,'Value')}; % selected function name
1831ActionPathList=get(handles.ActionName,'UserData');%list of recorded paths to functions of the list ActionName
1832
1833%% add a new function to the menu if 'more...' has been selected in the menu ActionName
1834if isequal(ActionName,'more...')
1835    [FileName, PathName] = uigetfile( ...
1836        {'*.m', ' (*.m)';
[2]1837        '*.m',  '.m files '; ...
1838        '*.*', 'All Files (*.*)'}, ...
[591]1839        'Pick a series processing function ',get(handles.ActionPath,'String'));
[2]1840    if length(FileName)<2
1841        return
1842    end
[591]1843    [ActionPath,ActionName,ActionExt]=fileparts(FileName);
[598]1844   
1845    % insert the choice in the menu ActionName
[591]1846    ActionIndex=find(strcmp(ActionName,ActionList),1);% look for the selected function in the menu Action
1847    if isempty(ActionIndex)%the input string does not exist in the menu
1848        ActionIndex= length(ActionList);
1849        ActionList=[ActionList(1:end-1);{ActionName};ActionList(end)];% the selected function is appended in the menu, before the last item 'more...'
1850        set(handles.ActionName,'String',ActionList)
1851    end
[2]1852   
[598]1853    % record the file extension and extend the path list if it is a new extension
[591]1854    ActionExtList=get(handles.ActionExt,'String');
1855    ActionExtIndex=find(strcmp(ActionExt,ActionExtList), 1);
1856    if isempty(ActionExtIndex)
1857        set(handles.ActionExt,'String',[ActionExtList;{ActionExt}])
[598]1858        ActionExtIndex=numel(ActionExtList)+1;
[591]1859        ActionPathNew=cell(size(ActionPathList,1),1);%new column of ActionPath
1860        ActionPathList=[ActionPathList ActionPathNew];
1861    end
1862    set(handles.ActionName,'UserData',ActionPathList);
[598]1863
1864    % remove old Action options in the menu (keeping a menu length <nb_builtin_ACTION+5)
1865    if length(ActionList)>nb_builtin_ACTION+5; %nb_builtin=nbre of functions always remaining in the initial menu
1866        nbremove=length(ActionList)-nb_builtin_ACTION-5;
1867        ActionList(nb_builtin_ACTION+1:end-5)=[];
1868        ActionPathList(nb_builtin_ACTION+1:end-4,:)=[];
1869        ActionIndex=ActionIndex-nbremove;
1870    end
[591]1871   
[598]1872    % record action menu, choice and path
1873    set(handles.ActionName,'Value',ActionIndex)
1874    set(handles.ActionName,'String',ActionList)
1875    set(handles.ActionExt,'Value',ActionExtIndex)
1876    ActionPathList{ActionIndex,ActionExtIndex}=PathName;
1877       
1878    %record the user defined menu additions in personal file profil_perso
[591]1879    dir_perso=prefdir;
1880    profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
[598]1881    if nb_builtin_ACTION+1<=numel(ActionList)-1
[591]1882        ActionListUser=ActionList(nb_builtin_ACTION+1:numel(ActionList)-1);
1883        ActionPathListUser=ActionPathList(nb_builtin_ACTION+1:numel(ActionList)-1,:);
1884        ActionExtListUser={};
1885        if numel(ActionExtList)>2
1886            ActionExtListUser=ActionExtList(3:end);
1887        end
1888        if exist(profil_perso,'file')
1889            save(profil_perso,'ActionListUser','ActionPathListUser','ActionExtListUser','-append')
1890        else
1891            save(profil_perso,'ActionListUser','ActionPathListUser','ActionExtListUser','-V6')
1892        end
1893    end
[2]1894end
1895
[591]1896%% check the current ActionPath to the selected function
[594]1897ActionPath=ActionPathList{ActionIndex};%current recorded path
1898set(handles.ActionPath,'String',ActionPath); %show the path to the senlected function
[2]1899
[591]1900%% reinitialise the waitbar
[477]1901update_waitbar(handles.Waitbar,0)
1902
[591]1903%% default setting for the visibility of the GUI elements
[598]1904% set(handles.FieldTransform,'Visible','off')
1905% set(handles.CheckObject,'Visible','off');
1906% set(handles.ProjObject,'Visible','off');
1907% set(handles.CheckMask,'Visible','off')
1908% set(handles.Mask,'Visible','off')
[591]1909
[594]1910%% create the function handle for Action
1911path_series=which('series');
1912if ~isequal(ActionPath,path_series)
1913    eval(['spath=which(''' ActionName ''');']) %spath = current path of the selected function ACTION
1914    if ~exist(ActionPath,'dir')
1915        errormsg=['The prescribed function path ' ActionPath ' does not exist'];
1916        return
1917    end
1918    if ~isequal(spath,ActionPath)
1919        addpath(ActionPath)% add the prescribed path if not the current one
1920    end
1921end
1922eval(['h_fun=@' ActionName ';'])%create a function handle for ACTION
1923if ~isequal(ActionPath,path_series)
1924        rmpath(ActionPath)% add the prescribed path if not the current one   
1925end
1926
[598]1927%% Activate the Action fct
[635]1928Param=read_GUI_series(handles);% read the parameters from the GUI series
1929ParamOut=h_fun(Param);
[591]1930
[598]1931%% Put the first line of the selected Action fct as tooltip help
[244]1932try
[591]1933    [fid,errormsg] =fopen([ActionName '.m']);
[244]1934    InputText=textscan(fid,'%s',1,'delimiter','\n');
[553]1935    fclose(fid);
[456]1936    set(handles.ActionName,'ToolTipString',InputText{1}{1})% put the first line of the selected function as tooltip help
[244]1937end
[2]1938
[591]1939%% Detect the types of input files
[472]1940SeriesData=get(handles.series,'UserData');
[591]1941nb_civ=0;nb_netcdf=0;
1942if ~isempty(SeriesData)
1943    nb_civ=numel(find(strcmp('civx',SeriesData.FileType)|strcmp('civdata',SeriesData.FileType)));
1944    nb_netcdf=numel(find(strcmp('netcdf',SeriesData.FileType)));
1945end
[630]1946if nb_civ>=1
1947    menu=set_veltype_display(SeriesData.FileInfo{1}.CivStage,SeriesData.FileType{1});
1948    set(handles.VelType,'String',[{'*'};menu])
1949    if nb_civ>=2
1950        menu=set_veltype_display(SeriesData.FileInfo{2}.CivStage,SeriesData.FileType{2});
1951        set(handles.VelType_1,'String',[{'*'};menu])
1952    end
1953end
1954       
1955   
[591]1956
1957%% Check whether alphabetical sorting of input Subdir is alowed by the Action fct  (for multiples series entries)
[635]1958if isfield(ParamOut,'AllowInputSort')&&isequal(ParamOut.AllowInputSort,'on')&& size(Param.InputTable,1)>1
[620]1959    [tild,iview]=sort(InputTable(:,2)); %subdirectories sorted in alphabetical order
1960    set(handles.InputTable,'Data',InputTable(iview,:));
1961    MinIndex_i=get(handles.MinIndex_i,'Data');
1962    MinIndex_j=get(handles.MinIndex_j,'Data');
1963    MaxIndex_i=get(handles.MaxIndex_i,'Data');
1964    MaxIndex_j=get(handles.MaxIndex_j,'Data');
1965    set(handles.MinIndex_i,'Data',MinIndex_i(iview,:));
1966    set(handles.MinIndex_j,'Data',MinIndex_j(iview,:));
1967    set(handles.MaxIndex_i,'Data',MaxIndex_i(iview,:));
1968    set(handles.MaxIndex_j,'Data',MaxIndex_j(iview,:));
1969    TimeTable=get(handles.TimeTable,'Data');
1970    set(handles.TimeTable,'Data',TimeTable(iview,:));
1971    PairString=get(handles.PairString,'Data');
1972    set(handles.PairString,'Data',PairString(iview,:));
[591]1973end
1974
1975%% Impose the whole input file index range if requested
1976if isfield(ParamOut,'WholeIndexRange')&&isequal(ParamOut.WholeIndexRange,'on')
[620]1977    MinIndex_i=get(handles.MinIndex_i,'Data');
1978    MinIndex_j=get(handles.MinIndex_j,'Data');
1979    MaxIndex_i=get(handles.MaxIndex_i,'Data');
1980    MaxIndex_j=get(handles.MaxIndex_j,'Data');
[635]1981    set(handles.num_first_i,'String',num2str(MinIndex_i(1)))% set first as the min index (for the first line)
1982    set(handles.num_last_i,'String',num2str(MaxIndex_i(1)))% set last as the max index (for the first line)
[620]1983    set(handles.num_incr_i,'String','1')
[635]1984    set(handles.num_first_j,'String',num2str(MinIndex_j(1)))% set first as the min index (for the first line)
1985    set(handles.num_last_j,'String',num2str(MaxIndex_j(1)))% set last as the max index (for the first line)
[620]1986    set(handles.num_incr_j,'String','1')
1987else  % check index ranges
1988    first_i=1;last_i=1;first_j=1;last_j=1;
[635]1989    if isfield(Param.IndexRange,'first_i')
1990        first_i=Param.IndexRange.first_i;
1991       % incr_i=Param.IndexRange.incr_i;
1992        last_i=Param.IndexRange.last_i;
[2]1993    end
[635]1994    if isfield(Param.IndexRange,'first_j')
1995        first_j=Param.IndexRange.first_j;
1996       % incr_j=Param.IndexRange.incr_j;
1997        last_j=Param.IndexRange.last_j;
[620]1998    end
1999    if last_i < first_i || last_j < first_j , msgbox_uvmat('ERROR','last field number must be larger than the first one'),...
2000            set(handles.RUN, 'Enable','On'), set(handles.RUN,'BackgroundColor',[1 0 0]),return,end;
[2]2001end
[591]2002
2003%% NbSlice visibility
2004NbSliceVisible='off';%default
2005if isfield(ParamOut,'NbSlice') && isequal(ParamOut.NbSlice,'on')
2006    NbSliceVisible='on';
2007    set(handles.num_NbProcess,'String',get(handles.num_NbSlice,'String'))% the nbre of processes is imposed as the nbre of slices
2008else
2009    set(handles.num_NbProcess,'String','')% free nbre of processes
[2]2010end
[591]2011set(handles.num_NbSlice,'Visible',NbSliceVisible)
2012set(handles.NbSlice_title,'Visible',NbSliceVisible)
[2]2013
[591]2014%% Visibility of VelType and VelType_1 menus
2015VelTypeVisible='off';  %hidden by default
2016VelType_1Visible='off';
2017InputFieldsVisible='off';%visibility of the frame Fields
2018if isfield(ParamOut,'VelType')
2019    if strcmp( ParamOut.VelType,'one')||strcmp( ParamOut.VelType,'two')
2020        if nb_civ>=1
2021            VelTypeVisible='on';
2022            InputFieldsVisible='on';
2023        end
2024    end
2025    if strcmp( ParamOut.VelType,'two')
2026        if nb_civ>=2
2027            VelType_1Visible='on';
2028        end
2029    end
2030end
2031set(handles.VelType,'Visible',VelTypeVisible)
2032set(handles.VelType_text,'Visible',VelTypeVisible);
2033set(handles.VelType_1,'Visible',VelType_1Visible)
2034set(handles.VelType_text_1,'Visible',VelType_1Visible);
2035
2036%% Visibility of FieldName and FieldName_1 menus
2037FieldNameVisible='off';  %hidden by default
2038FieldName_1Visible='off';  %hidden by default
2039if isfield(ParamOut,'FieldName')
2040    if strcmp( ParamOut.FieldName,'one')||strcmp( ParamOut.FieldName,'two')
2041        if (nb_civ+nb_netcdf)>=1
2042            InputFieldsVisible='on';
2043            FieldNameVisible='on';
2044        end
2045    end
2046    if strcmp( ParamOut.FieldName,'two')
2047        if (nb_civ+nb_netcdf)>=1
2048            FieldName_1Visible='on';
2049        end
2050    end
2051end
2052set(handles.InputFields,'Visible',InputFieldsVisible)
2053set(handles.FieldName,'Visible',FieldNameVisible) % test for MenuBorser
2054set(handles.FieldName_1,'Visible',FieldName_1Visible)
2055
2056%% Visibility of FieldTransform menu
2057FieldTransformVisible='off';  %hidden by default
2058if isfield(ParamOut,'FieldTransform')
2059    FieldTransformVisible=ParamOut.FieldTransform; 
2060    TransformName_Callback([],[], handles)
2061end
2062set(handles.FieldTransform,'Visible',FieldTransformVisible)
[606]2063if isfield(ParamOut,'TransformPath')
2064    set(handles.ActionExt,'UserData',ParamOut.TransformPath)
2065else
2066    set(handles.ActionExt,'UserData',[])
2067end
[591]2068
2069%% Visibility of projection object
2070ProjObjectVisible='off';  %hidden by default
2071if isfield(ParamOut,'ProjObject')
2072    ProjObjectVisible=ParamOut.ProjObject;
2073end
2074set(handles.CheckObject,'Visible',ProjObjectVisible)
2075if ~get(handles.CheckObject,'Value')
2076    ProjObjectVisible='off';
2077end
2078set(handles.ProjObject,'Visible',ProjObjectVisible)
2079set(handles.DeleteObject,'Visible',ProjObjectVisible)
2080set(handles.ViewObject,'Visible',ProjObjectVisible)
2081
2082
2083%% Visibility of mask input
2084MaskVisible='off';  %hidden by default
2085if isfield(ParamOut,'Mask')
2086    MaskVisible=ParamOut.Mask;
2087end
[639]2088%set(handles.Mask,'Visible',MaskVisible)
[591]2089set(handles.CheckMask,'Visible',MaskVisible);
2090
2091%% definition of the directory containing the output files
2092OutputDirVisible='off';
2093if isfield(ParamOut,'OutputDirExt')&&~isempty(ParamOut.OutputDirExt)
2094    set(handles.OutputDirExt,'String',ParamOut.OutputDirExt)
2095    OutputDirVisible='on';
[620]2096    SubDir=InputTable(1:end-1,2); %set of subdirectories sorted in alphabetical order
2097    SubDirOut=SubDir{1};
2098    if numel(SubDir)>1
2099        for ilist=2:numel(SubDir)
2100            SubDirOut=[SubDirOut '-' SubDir{ilist}];
2101        end
2102    end
2103    set(handles.OutputSubDir,'String',SubDirOut)
[591]2104end
2105set(handles.OutputDirExt,'Visible',OutputDirVisible)
2106set(handles.OutputSubDir,'Visible',OutputDirVisible)
2107set(handles.OutputDir_title,'Visible',OutputDirVisible)
2108set(handles.RunMode,'Visible',OutputDirVisible)
2109set(handles.ActionExt,'Visible',OutputDirVisible)
2110set(handles.RunMode_title,'Visible',OutputDirVisible)
2111set(handles.ActionExt_title,'Visible',OutputDirVisible)
2112
[620]2113
[602]2114%% Expected nbre of output files
2115if isfield(ParamOut,'OutputFileMode')
[604]2116StatusData.OutputFileMode=ParamOut.OutputFileMode;
[602]2117set(handles.status,'UserData',StatusData)
2118end
2119
[591]2120%% definition of an additional parameter set, determined by an ancillary GUI
2121if isfield(ParamOut,'ActionInput')
2122    set(handles.ActionInput,'Visible','on')
2123    set(handles.ActionInput_title,'Visible','on')
[598]2124    set(handles.ActionInputView,'Visible','on')
2125    set(handles.ActionInputView,'Value',0)
[591]2126    set(handles.ActionInput,'String',ActionName)
[598]2127    ParamOut.ActionInput.Program=ActionName; % record the program in ActionInput
[591]2128    SeriesData.ActionInput=ParamOut.ActionInput;
2129else
2130    set(handles.ActionInput,'Visible','off')
2131    set(handles.ActionInput_title,'Visible','off')
[598]2132    set(handles.ActionInputView,'Visible','off')
[591]2133    if isfield(SeriesData,'ActionInput')
2134    SeriesData=rmfield(SeriesData,'ActionInput');
2135    end
2136end   
2137set(handles.series,'UserData',SeriesData)
[598]2138set(handles.ActionName,'BackgroundColor',[1 1 1])
[591]2139
[41]2140%------------------------------------------------------------------------
[598]2141% --- Executes on button press in ActionInputView.
2142function ActionInputView_Callback(hObject, eventdata, handles)
2143%------------------------------------------------------------------------
2144if get(handles.ActionInputView,'Value')
2145ActionName_Callback(hObject, eventdata, handles)
2146end
2147
2148%------------------------------------------------------------------------
[446]2149% --- Executes on selection change in FieldName.
2150function FieldName_Callback(hObject, eventdata, handles)
[41]2151%------------------------------------------------------------------------
[446]2152field_str=get(handles.FieldName,'String');
2153field_index=get(handles.FieldName,'Value');
[2]2154field=field_str{field_index(1)};
[595]2155if isequal(field,'get_field...')
2156    hget_field=findobj(allchild(0),'name','get_field');
2157    if ~isempty(hget_field)
2158        delete(hget_field)%delete opened versions of get_field
2159    end
[635]2160    Param=read_GUI(handles.series);
2161    Param.InputTable=Param.InputTable(1,:);
2162    filecell=get_file_series(Param);
[595]2163    if exist(filecell{1,1},'file')
2164        GetFieldData=get_field(filecell{1,1});
2165        FieldList={};
2166        XName=GetFieldData.XVarName;
2167        if GetFieldData.CheckVector
2168            UName=GetFieldData.PanelVectors.vector_x;
2169            VName=GetFieldData.PanelVectors.vector_y;
2170            XName=GetFieldData.XVarName;
2171            YName=GetFieldData.YVarName;
2172            CName=GetFieldData.PanelVectors.vec_color;
2173            [FieldList,VecColorList]=set_field_list(UName,VName,CName);
2174        elseif GetFieldData.CheckScalar
2175            AName=GetFieldData.PanelScalar.scalar;
2176            XName=GetFieldData.XVarName;
2177            YName=GetFieldData.YVarName;
2178            FieldList={AName};
2179        elseif GetFieldData.CheckPlot1D;
2180            YName=GetFieldData.CheckPlot1D.ordinate;
2181        end
2182        set(handles.Coord_x,'String',{XName})
2183        set(handles.Coord_y,'String',{YName})
2184        set(handles.FieldName,'Value',1)
2185        set(handles.FieldName,'String',[FieldList; {'get_field...'}]);
2186        %         set(handles.ColorScalar,'Value',1)
2187        %         set(handles.ColorScalar,'String',VecColorList);
2188        %         UvData.FileType{1}='netcdf';
2189        %         set(handles.uvmat,'UserData',UvData)
2190    end
2191    % elseif isequal(field,'more...')
2192    %     str=calc_field;
2193    %     [ind_answer,v] = listdlg('PromptString','Select a file:',...
2194    %                 'SelectionMode','single',...
2195    %                 'ListString',str);
2196    %        % edit the choice in the fields and actionname menu
2197    %      scalar=cell2mat(str(ind_answer));
2198    %      update_menu(handles.FieldName,scalar)
[2]2199end
2200
[41]2201%------------------------------------------------------------------------
[446]2202% --- Executes on selection change in FieldName_1.
2203function FieldName_1_Callback(hObject, eventdata, handles)
[41]2204%------------------------------------------------------------------------
[446]2205field_str=get(handles.FieldName_1,'String');
2206field_index=get(handles.FieldName_1,'Value');
[2]2207field=field_str{field_index};
2208if isequal(field,'get_field...')   
2209     hget_field=findobj(allchild(0),'name','get_field_1');
2210     if ~isempty(hget_field)
2211         delete(hget_field)
2212     end
[332]2213     SeriesData=get(handles.series,'UserData');
[2]2214     filename=SeriesData.CurrentInputFile_1;
2215     if exist(filename,'file')
2216        hget_field=get_field(filename);
2217        set(hget_field,'name','get_field_1')
2218     end
[595]2219% elseif isequal(field,'more...')
2220%     str=calc_field;
2221%     [ind_answer,v] = listdlg('PromptString','Select a file:',...
2222%                 'SelectionMode','single',...
2223%                 'ListString',str);
2224%        % edit the choice in the fields and actionname menu
2225%      scalar=cell2mat(str(ind_answer));
2226%      update_menu(handles.FieldName_1,scalar)
[2]2227end   
[29]2228
[244]2229
[2]2230%%%%%%%%%%%%%
2231function [ind_remove]=find_pairs(dirpair,ind_i,last_i)
[339]2232indsel=ind_i;
2233indiff=diff(ind_i); %test index increment to detect multiplets (several pairs with the same index ind_i) and holes in the series
2234indiff=[1 indiff last_i-ind_i(end)+1];%for testing gaps with the imposed bounds
2235if ~isempty(indiff)
2236    indiff2=diff(indiff);
2237    indiffp=[indiff2 1];
2238    indiffm=[1 indiff2];
2239    ind_multi_m=find((indiff==0)&(indiffm<0))-1;%indices of first members of multiplets
2240    ind_multi_p=find((indiff==0)&(indiffp>0));%indices of last members of multiplets
2241    %for each multiplet, select the most recent file
2242    ind_remove=[];
2243    for i=1:length(ind_multi_m)
2244        ind_pairs=ind_multi_m(i):ind_multi_p(i);
2245        for imulti=1:length(ind_pairs)
2246            datepair(imulti)=datenum(dirpair(ind_pairs(imulti)).date);%dates of creation
[2]2247        end
[339]2248        [datenew,indsort2]=sort(datepair); %sort the multiplet by creation date
2249        ind_s=indsort2(1:end-1);%
2250        ind_remove=[ind_remove ind_pairs(ind_s)];%remove these indices, leave the last one
2251    end
2252end
[2]2253
[89]2254%------------------------------------------------------------------------
[408]2255% --- determine the list of index pairstring of processing file
[32]2256function [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)
[89]2257%------------------------------------------------------------------------
[32]2258num_i1=num_i;% set of first image numbers by default
2259num_i2=num_i;
2260num_j1=num_j;
2261num_j2=num_j;
2262num_i_out=num_i;
2263num_j_out=num_j;
[339]2264% if isequal (NomType,'_1-2_1') || isequal (NomType,'_1-2')
2265if isequal(mode,'series(Di)')
[32]2266    num_i1_line=num_i+ind_shift(3);% set of first image numbers
2267    num_i2_line=num_i+ind_shift(4);
2268    % adjust the first and last field number
2269        indsel=find(num_i1_line >= 1);
2270    num_i_out=num_i(indsel);
2271    num_i1_line=num_i1_line(indsel);
2272    num_i2_line=num_i2_line(indsel);
2273    num_j1=meshgrid(num_j,ones(size(num_i1_line)));
2274    num_j2=meshgrid(num_j,ones(size(num_i1_line)));
2275    [xx,num_i1]=meshgrid(num_j,num_i1_line);
2276    [xx,num_i2]=meshgrid(num_j,num_i2_line);
[339]2277elseif isequal (mode,'series(Dj)')||isequal (mode,'bursts')
[32]2278    if isequal(mode,'bursts') %case of bursts (png_old or png_2D)
2279        num_j1=ind_shift(1)*ones(size(num_i));
2280        num_j2=ind_shift(2)*ones(size(num_i));
2281    else
2282        num_j1_col=num_j+ind_shift(1);% set of first image numbers
2283        num_j2_col=num_j+ind_shift(2);
2284        % adjust the first field number
2285        indsel=find((num_j1_col >= 1));   
2286        num_j_out=num_j(indsel);
2287        num_j1_col=num_j1_col(indsel);
2288        num_j2_col=num_j2_col(indsel);
2289        [num_i1,num_j1]=meshgrid(num_i,num_j1_col);
2290        [num_i2,num_j2]=meshgrid(num_i,num_j2_col);
2291    end   
2292end
[2]2293
[41]2294%------------------------------------------------------------------------
[446]2295% --- Executes on button press in CheckObject.
[630]2296%------------------------------------------------------------------------
[446]2297function CheckObject_Callback(hObject, eventdata, handles)
[630]2298
[606]2299hset_object=findobj(allchild(0),'tag','set_object');%find the set_object interface handle
[630]2300if get(handles.CheckObject,'Value')
[606]2301    SeriesData=get(handles.series,'UserData');
[630]2302    if isfield(SeriesData,'ProjObject') && ~isempty(SeriesData.ProjObject)
2303        set(handles.ViewObject,'Value',1)
2304        ViewObject_Callback(hObject, eventdata, handles)
2305    else
[606]2306        if ishandle(hset_object)
2307            uistack(hset_object,'top')% show the GUI set_object if opened
2308        else
2309            %get the object file
2310            InputTable=get(handles.InputTable,'Data');
2311            defaultname=InputTable{1,1};
2312            if isempty(defaultname)
2313                defaultname={''};
2314            end
2315            [FileName, PathName] = uigetfile( ...
2316                {'*.xml;*.mat', ' (*.xml,*.mat)';
2317                '*.xml',  '.xml files '; ...
2318                '*.mat',  '.mat matlab files '}, ...
2319                'Pick an xml object file (or use uvmat to create it)',defaultname);
2320            fileinput=[PathName FileName];%complete file name
2321            sizf=size(fileinput);
2322            if (~ischar(fileinput)||~isequal(sizf(1),1)),return;end
2323            %read the file
2324            data=xml2struct(fileinput);
2325            if ~isfield(data,'Type')
2326                msgbox_uvmat('ERROR',[fileinput ' is not an object xml file'])
2327                return
2328            end
2329            if ~isfield(data,'ProjMode')
2330                data.ProjMode='none';
2331            end
2332            hset_object=set_object(data);% call the set_object interface
[41]2333        end
[606]2334        ProjObject=read_GUI(hset_object);
2335        set(handles.ProjObject,'String',ProjObject.Name);%display the object name
2336        SeriesData=get(handles.series,'UserData');
2337        SeriesData.ProjObject=ProjObject;
2338        set(handles.series,'UserData',SeriesData);
2339    end
[630]2340    set(handles.EditObject,'Visible','on');
[606]2341    set(handles.DeleteObject,'Visible','on');
2342    set(handles.ViewObject,'Visible','on');
2343    set(handles.ProjObject,'Visible','on');
[2]2344else
[630]2345    set(handles.EditObject,'Visible','off');
[606]2346    set(handles.DeleteObject,'Visible','off');
2347    set(handles.ViewObject,'Visible','off');
2348    if ~ishandle(hset_object)
2349    set(handles.ViewObject,'Value',0);
2350    end
2351    set(handles.ProjObject,'Visible','off');
[2]2352end
2353
[630]2354%------------------------------------------------------------------------
2355% --- Executes on button press in ViewObject.
2356%------------------------------------------------------------------------
2357function ViewObject_Callback(hObject, eventdata, handles)
2358
2359if get(handles.ViewObject,'Value')
2360    set(handles.EditObject,'Value',0)
2361        UserData=get(handles.series,'UserData');
2362    hset_object=set_object(UserData.ProjObject);
2363    set(hset_object,'Name','view_object_series')
2364else
2365    hset_object=findobj(allchild(0),'Tag','set_object');
2366    if ~isempty(hset_object)
2367        delete(hset_object)
2368    end
2369end
2370
2371%------------------------------------------------------------------------
2372% --- Executes on button press in EditObject.
2373%------------------------------------------------------------------------
2374function EditObject_Callback(hObject, eventdata, handles)
2375
2376if get(handles.EditObject,'Value')
2377    set(handles.ViewObject,'Value',0)
2378        UserData=get(handles.series,'UserData');
2379    hset_object=set_object(UserData.ProjObject);
2380    set(hset_object,'Name','edit_object_series')
2381    set(get(hset_object,'Children'),'Enable','on')
2382else
2383    hset_object=findobj(allchild(0),'Tag','set_object');
2384    if ~isempty(hset_object)
2385        delete(hset_object)
2386    end
2387end
2388
2389%------------------------------------------------------------------------
2390% --- Executes on button press in DeleteObject.
2391%------------------------------------------------------------------------
2392function DeleteObject_Callback(hObject, eventdata, handles)
2393
2394if get(handles.DeleteObject,'Value')
2395        SeriesData=get(handles.series,'UserData');
2396    SeriesData.ProjObject=[];
2397    set(handles.series,'UserData',SeriesData)
2398    set(handles.ProjObject,'String','')
2399    set(handles.CheckObject,'Value',0)
2400    set(handles.DeleteObject,'Visible','off')
2401    set(handles.ViewObject,'Visible','off')
2402    set(handles.DeleteObject,'Value',0)
2403end
2404
[2]2405%--------------------------------------------------------------
[446]2406function CheckMask_Callback(hObject, eventdata, handles)
[630]2407
2408if get(handles.CheckMask,'Value')
[639]2409    set(handles.Mask,'Visible','on')
[636]2410    InputTable=get(handles.InputTable,'Data');
2411    defaultname=InputTable{1,1};
2412    MaskName=uigetfile_uvmat('select a mask image file:',defaultname);
2413    if ~isempty(MaskName)
2414        set(handles.Mask,'String',MaskName)
2415    end
2416else
[639]2417    set(handles.Mask,'Visible','off')
[636]2418    set(handles.Mask,'String','')
[2]2419end
2420%--------------------------------------------------------------
2421
[41]2422%-------------------------------------------------------------------
[2]2423%'uv_ncbrowser': interactively calls the netcdf file browser 'get_field.m'
2424function ncbrowser_uvmat(hObject, eventdata)
[41]2425%-------------------------------------------------------------------
[2]2426     bla=get(gcbo,'String');
2427     ind=get(gcbo,'Value');
2428     filename=cell2mat(bla(ind));
2429      blank=find(filename==' ');
2430      filename=filename(1:blank-1);
2431     get_field(filename)
2432
[41]2433% ------------------------------------------------------------------
[2]2434function MenuHelp_Callback(hObject, eventdata, handles)
[41]2435%-------------------------------------------------------------------
[2]2436path_to_uvmat=which ('uvmat');% check the path of uvmat
2437pathelp=fileparts(path_to_uvmat);
[36]2438helpfile=fullfile(pathelp,'uvmat_doc','uvmat_doc.html');
2439if isempty(dir(helpfile)), msgbox_uvmat('ERROR','Please put the help file uvmat_doc.html in the sub-directory /uvmat_doc of the UVMAT package')
[2]2440else
[36]2441    addpath (fullfile(pathelp,'uvmat_doc'))
2442    web([helpfile '#series'])
[2]2443end
2444
[41]2445%-------------------------------------------------------------------
[446]2446% --- Executes on selection change in TransformName.
2447function TransformName_Callback(hObject, eventdata, handles)
[591]2448%----------------------------------------------------------------------
2449TransformList=get(handles.TransformName,'String');
2450TransformIndex=get(handles.TransformName,'Value');
2451TransformName=TransformList{TransformIndex};
2452TransformPathList=get(handles.TransformName,'UserData');
2453nb_builtin_transform=4;
2454% ff=functions(list_transform{end});
2455if isequal(TransformName,'more...');
2456%     coord_fct='';
2457%     prompt = {'Enter the name of the transform function'};
2458%     dlg_title = 'user defined transform';
2459%     num_lines= 1;
2460    [FileName, PathName] = uigetfile( ...
[39]2461       {'*.m', ' (*.m)';
2462        '*.m',  '.m files '; ...
2463        '*.*', 'All Files (*.*)'}, ...
[591]2464        'Pick a transform function',get(handles.TransformPath,'String'));
2465    if isequal(FileName,0)
2466        return     %browser closed without choice
2467    end
[39]2468    if isequal(PathName(end),'/')||isequal(PathName(end),'\')
2469        PathName(end)=[];
2470    end
[591]2471    [TransformPath,TransformName,TransformExt]=fileparts(FileName);% removes extension .m
2472    if ~strcmp(TransformExt,'.m')
[39]2473        msgbox_uvmat('ERROR','a Matlab function .m must be introduced');
2474        return
2475    end
[591]2476     % insert the choice in the menu
2477    TransformIndex=find(strcmp(TransformName,TransformList),1);% look for the selected function in the menu Action
2478    if isempty(TransformIndex)%the input string does not exist in the menu
2479        TransformIndex= length(TransformList);
[635]2480        TransformList=[TransformList(1:end-1);{TransformName};TransformList(end)];% the selected function is appended in the menu, before the last item 'more...'
[591]2481        set(handles.TransformName,'String',TransformList)
2482        TransformPathList=[TransformPathList;{TransformPath}];
2483    end
[39]2484   % save the new menu in the personal file 'uvmat_perso.mat'
2485   dir_perso=prefdir;%personal Matalb directory
2486   profil_perso=fullfile(dir_perso,'uvmat_perso.mat');
2487   if exist(profil_perso,'file')
[591]2488       for ilist=nb_builtin_transform+1:numel(TransformPathList)
2489           TransformListUser{ilist-nb_builtin_transform}=TransformList{ilist};
2490           TransformPathListUser{ilist-nb_builtin_transform}=TransformPathList{ilist};
[39]2491       end
[591]2492       save (profil_perso,'TransformPathListUser','TransformListUser','-append'); %store the root name for future opening of uvmat
[39]2493   end
2494end
[2]2495
[591]2496%display the current function path
2497set(handles.TransformPath,'String',TransformPathList{TransformIndex}); %show the path to the senlected function
2498set(handles.TransformName,'UserData',TransformPathList);
[350]2499
[635]2500%------------------------------------------------------------------------
2501% --- fct activated by the upper bar menu ExportConfig
2502%------------------------------------------------------------------------
[446]2503function MenuExportConfig_Callback(hObject, eventdata, handles)
[358]2504
[635]2505global Param
2506Param=read_GUI_series(handles);
2507evalin('base','global Param')%make CurData global in the workspace
[446]2508display('current series config :')
[635]2509evalin('base','Param') %display CurData in the workspace
[446]2510commandwindow; %brings the Matlab command window to the front
[472]2511
[635]2512%------------------------------------------------------------------------
2513% --- fct activated by the upper bar menu InportConfig
2514%------------------------------------------------------------------------
[603]2515function MenuImportConfig_Callback(hObject, eventdata, handles)
[635]2516
[603]2517InputTable=get(handles.InputTable,'Data');
2518[FileName, PathName] = uigetfile( ...
2519       {'*.xml', ' (*.xml)';
2520       '*.xml',  '.xml files '; ...
2521        '*.*',  'All Files (*.*)'}, ...
2522        'Pick a file',InputTable{1,1});
2523filexml=[PathName FileName];%complete file name
2524if isempty(filexml),return;end %abandon if no file is introduced by the browser
2525Param=xml2struct(filexml);
2526fill_GUI(Param,handles.series)
2527
[635]2528%------------------------------------------------------------------------
2529% --- Executes when the GUI series is resized.
2530%------------------------------------------------------------------------
2531function series_ResizeFcn(hObject, eventdata, handles)
[525]2532
[526]2533%% input table
2534set(handles.InputTable,'Unit','pixel')
2535Pos=get(handles.InputTable,'Position');
2536set(handles.InputTable,'Unit','normalized')
2537ColumnWidth=round([0.5 0.14 0.14 0.14 0.08]*(Pos(3)-52));
2538ColumnWidth=num2cell(ColumnWidth);
2539set(handles.InputTable,'ColumnWidth',ColumnWidth)
2540
[620]2541%% MinIndex_j and MaxIndex_i
2542unit=get(handles.MinIndex_i,'Unit');
2543set(handles.MinIndex_i,'Unit','pixel')
2544Pos=get(handles.MinIndex_i,'Position');
2545set(handles.MinIndex_i,'Unit',unit)
2546set(handles.MinIndex_i,'ColumnWidth',{Pos(3)-18})
2547set(handles.MaxIndex_i,'ColumnWidth',{Pos(3)-18})
2548set(handles.MinIndex_j,'ColumnWidth',{Pos(3)-18})
2549set(handles.MaxIndex_j,'ColumnWidth',{Pos(3)-18})
[526]2550
2551%% TimeTable
2552set(handles.TimeTable,'Unit','pixel')
2553Pos=get(handles.TimeTable,'Position');
2554set(handles.TimeTable,'Unit','normalized')
[620]2555% ColumnWidth=get(handles.TimeTable,'ColumnWidth');
[526]2556ColumnWidth=num2cell(floor([0.25 0.25 0.25 0.25]*(Pos(3)-20)));
2557set(handles.TimeTable,'ColumnWidth',ColumnWidth)
2558
2559
2560%% PairString
2561set(handles.PairString,'Unit','pixel')
2562Pos=get(handles.PairString,'Position');
2563set(handles.PairString,'Unit','normalized')
2564set(handles.PairString,'ColumnWidth',{Pos(3)-5})
[586]2565
2566
2567% --- Executes on button press in status.
2568function status_Callback(hObject, eventdata, handles)
[591]2569
[595]2570if get(handles.status,'Value')
2571    set(handles.status,'BackgroundColor',[1 1 0])
2572    drawnow
[604]2573    %StatusData.time_ref=get(handles.RUN,'UserData');% get the time of launch
[595]2574    Param=read_GUI(handles.series);
2575    RootPath=Param.InputTable{1,1};
[599]2576    if ~isfield(Param,'OutputSubDir')   
2577        msgbox_uvmat('ERROR','no directory defined for output files')
2578        return
2579    end
[595]2580    OutputSubDir=[Param.OutputSubDir Param.OutputDirExt];% subdirectory for output files
2581    OutputDir=fullfile(RootPath,OutputSubDir);
[610]2582    uigetfile_uvmat('status_display',OutputDir)
2583   
2584%     hfig=findobj(allchild(0),'name','series_status');
2585%     if isempty(hfig)
2586%         ScreenSize=get(0,'ScreenSize');
2587%         hfig=figure('DeleteFcn',@stop_status,'Position',[ScreenSize(3)-600 ScreenSize(4)-640 560 600]);
2588%         set(hfig,'MenuBar','none')% suppress the menu bar
2589%         set(hfig,'NumberTitle','off')%suppress the fig number in the title
2590%         set(hfig,'name','series_status')
2591%         set(hfig,'tag','series_status')
2592%         uicontrol('Style','listbox','Units','normalized', 'Position',[0.05 0.09 0.9 0.71], 'Callback', @view_file,'tag','list','UserData',OutputDir);
2593%         uicontrol('Style','edit','Units','normalized', 'Position', [0.05 0.87 0.9 0.1],'tag','titlebox','Max',2,'String',OutputDir);
2594%         uicontrol('Style','frame','Units','normalized', 'Position', [0.05 0.81 0.9 0.05]);
2595%         uicontrol('Style','pushbutton','Units','normalized', 'Position', [0.7 0.01 0.2 0.07],'String','Close','FontWeight','bold','FontUnits','points','FontSize',11,'Callback',@stop_status);
2596%         uicontrol('Style','pushbutton','Units','normalized', 'Position', [0.1 0.01 0.2 0.07],'String','Refresh','FontWeight','bold','FontUnits','points','FontSize',11,'Callback',@refresh_GUI);
2597%         %set(hrefresh,'UserData',StatusData)
2598%         BarPosition=[0.05 0.81 0.01 0.05];
2599%         uicontrol('Style','frame','Units','normalized', 'Position',BarPosition ,'BackgroundColor',[1 0 0],'tag','waitbar');
2600%         drawnow
2601%     end
2602%     refresh_GUI(hfig)
[595]2603else
2604    %% delete current display fig if selection is off
[586]2605    set(handles.status,'BackgroundColor',[0 1 0])
2606    hfig=findobj(allchild(0),'name','series_status');
2607    if ~isempty(hfig)
2608        delete(hfig)
2609    end
2610    return
2611end
[595]2612
2613
2614%------------------------------------------------------------------------   
2615% launched by selecting a file on the list
2616function view_file(hObject, eventdata)
[604]2617%------------------------------------------------------------------------
[595]2618list=get(hObject,'String');
2619index=get(hObject,'Value');
2620rootroot=get(hObject,'UserData');
2621selectname=list{index};
2622ind_dot=regexp(selectname,'\.\.\.');
2623if ~isempty(ind_dot)
2624    selectname=selectname(1:ind_dot-1);
[586]2625end
[595]2626FullSelectName=fullfile(rootroot,selectname);
2627if exist(FullSelectName,'dir')% a directory has been selected
2628    ListFiles=dir(FullSelectName);
2629    ListDisplay=cell(numel(ListFiles),1);
2630    for ilist=2:numel(ListDisplay)% suppress the first line '.'
2631        ListDisplay{ilist-1}=ListFiles(ilist).name;
2632    end
2633    set(hObject,'Value',1)
2634    set(hObject,'String',ListDisplay)
2635    if strcmp(selectname,'..')
2636        FullSelectName=fileparts(fileparts(FullSelectName));
2637    end
2638    set(hObject,'UserData',FullSelectName)
2639    hfig=get(hObject,'parent');
2640    htitlebox=findobj(hfig,'tag','titlebox');   
2641    set(htitlebox,'String',FullSelectName)
2642elseif exist(FullSelectName,'file')%visualise the vel field if it exists
2643    FileType=get_file_type(FullSelectName);
2644    if strcmp(FileType,'txt')
2645        edit(FullSelectName)
[598]2646    elseif strcmp(FileType,'xml')
2647        editxml(FullSelectName)
[595]2648    else
2649        uvmat(FullSelectName)
2650    end
2651    set(gcbo,'Value',1)
2652end
[591]2653
[595]2654
[591]2655%------------------------------------------------------------------------   
2656% launched by refreshing the status figure
[606]2657function refresh_GUI(hfig)
[591]2658%------------------------------------------------------------------------
[595]2659htitlebox=findobj(hfig,'tag','titlebox');
[591]2660hlist=findobj(hfig,'tag','list');
[604]2661hseries=findobj(allchild(0),'tag','series');
2662hstatus=findobj(hseries,'tag','status');
2663StatusData=get(hstatus,'UserData');
[595]2664OutputDir=get(htitlebox,'String');
[602]2665if ischar(OutputDir),OutputDir={OutputDir};end
2666ListFiles=dir(OutputDir{1});
[604]2667if numel(ListFiles)<1
2668    return
2669end
2670ListFiles(1)=[];%removes the first line ='.'
[591]2671ListDisplay=cell(numel(ListFiles),1);
[602]2672testrecent=0;
[604]2673datnum=zeros(numel(ListDisplay),1);
2674for ilist=1:numel(ListDisplay)
2675    ListDisplay{ilist}=ListFiles(ilist).name;
[602]2676      if ~ListFiles(ilist).isdir && isfield(ListFiles(ilist),'datenum')
2677            datnum(ilist)=ListFiles(ilist).datenum;%only available in recent matlab versions
2678            testrecent=1;
2679       end
[591]2680end
2681set(hlist,'String',ListDisplay)
[602]2682
2683%% Look at date of creation
[604]2684ListDisplay=ListDisplay(datnum~=0);
[602]2685datnum=datnum(datnum~=0);%keep the non zero values corresponding to existing files
[606]2686NbOutputFile=[];
[602]2687if isempty(datnum)
2688    if testrecent
2689        message='no civ result created yet';
2690    else
2691        message='';
2692    end
2693else
2694    [first,indfirst]=min(datnum);
2695    [last,indlast]=max(datnum);
[604]2696    NbOutputFile_str='?';
2697    NbOutputFile=[];
2698    if isfield(StatusData,'NbOutputFile')
2699        NbOutputFile=StatusData.NbOutputFile;
2700        NbOutputFile_str=num2str(NbOutputFile);
2701    end
2702    message={[num2str(numel(datnum)) ' file(s) done over ' NbOutputFile_str] ;['oldest modification:  ' ListDisplay{indfirst} ' : ' datestr(first)];...
[602]2703        ['latest modification:  ' ListDisplay{indlast} ' : ' datestr(last)]};
2704end
[604]2705set(htitlebox,'String', [OutputDir{1};message])
2706
2707%% update the waitbar
[602]2708hwaitbar=findobj(hfig,'tag','waitbar');
[604]2709if ~isempty(NbOutputFile)
2710    BarPosition=get(hwaitbar,'Position');
2711    BarPosition(3)=0.9*numel(datnum)/NbOutputFile;
2712    set(hwaitbar,'Position',BarPosition)
2713end
[602]2714
[635]2715%------------------------------------------------------------------------
[591]2716% --- Executes on selection change in ActionExt.
[635]2717%------------------------------------------------------------------------
[591]2718function ActionExt_Callback(hObject, eventdata, handles)
[635]2719
[591]2720ActionExtList=get(handles.ActionExt,'String');
2721ActionExt=ActionExtList{get(handles.ActionExt,'Value')};
2722ActionList=get(handles.ActionName,'String');
2723ActionName=ActionList{get(handles.ActionName,'Value')};
[606]2724TransformPath='';
2725if ~isempty(get(handles.ActionExt,'UserData'))
2726    TransformPath=get(handles.ActionExt,'UserData');
2727end
[591]2728if strcmp(ActionExt,'.sh')
[606]2729    set(handles.ActionExt,'BackgroundColor',[1 1 0])
[594]2730    ActionFullName=fullfile(get(handles.ActionPath,'String'),[ActionName '.sh']);
[591]2731    if ~exist(ActionFullName,'file')
2732        answer=msgbox_uvmat('INPUT_Y-N','compiled version has not been created: compile now?');
2733        if strcmp(answer,'Yes')
[606]2734            set(handles.ActionExt,'BackgroundColor',[1 1 0])
2735            path_uvmat=fileparts(which('series'));
[591]2736            currentdir=pwd;
[606]2737            cd(get(handles.ActionPath,'String'))% go to the directory of Action
2738            %  addpath(get(handles.TransformPath,'String'))
2739            addpath(path_uvmat)% add the path to uvmat to run the fct 'compile'
2740           % addpath(fullfile(path_uvmat,'transform_field'))% add the path to uvmat to run the fct 'compile'
2741            compile(ActionName,TransformPath)
[591]2742            cd(currentdir)
[635]2743        end       
[606]2744    else
2745        sh_file_info=dir(fullfile(get(handles.ActionPath,'String'),[ActionName '.sh']));
2746        m_file_info=dir(fullfile(get(handles.ActionPath,'String'),[ActionName '.m']));
2747        if isfield(m_file_info,'datenum') && m_file_info.datenum>sh_file_info.datenum
2748            set(handles.ActionExt,'BackgroundColor',[1 1 0])
2749            drawnow
2750            answer=msgbox_uvmat('INPUT_Y-N',[ActionName '.sh needs to be updated: recompile now?']);
2751            if strcmp(answer,'Yes')
2752                path_uvmat=fileparts(which('series'));
2753                currentdir=pwd;
2754                cd(get(handles.ActionPath,'String'))% go to the directory of Action
2755                %  addpath(get(handles.TransformPath,'String'))
2756                addpath(path_uvmat)% add the path to uvmat to run the fct 'compile'
2757                addpath(fullfile(path_uvmat,'transform_field'))% add the path to uvmat to run the fct 'compile'
2758                compile(ActionName,TransformPath)
2759                cd(currentdir)
2760            end
[594]2761        end
2762    end
[606]2763    set(handles.ActionExt,'BackgroundColor',[1 1 1])
[591]2764end
2765
2766
2767
2768
2769function num_NbProcess_Callback(hObject, eventdata, handles)
2770
2771
2772function num_NbSlice_Callback(hObject, eventdata, handles)
2773NbSlice=str2num(get(handles.num_NbSlice,'String'));
2774set(handles.num_NbProcess,'String',num2str(NbSlice))
[630]2775
2776%------------------------------------------------------------------------
2777% --- set the visibility of relevant velocity type menus:
2778function menu=set_veltype_display(Civ,FileType)
2779%------------------------------------------------------------------------
2780if ~exist('FileType','var')
2781    FileType='civx';
2782end
2783switch FileType
2784    case 'civx'
2785        menu={'civ1';'interp1';'filter1';'civ2';'interp2';'filter2'};
2786        if isequal(Civ,0)
2787            imax=0;
2788        elseif isequal(Civ,1) || isequal(Civ,2)
2789            imax=1;
2790        elseif isequal(Civ,3)
2791            imax=3;
2792        elseif isequal(Civ,4) || isequal(Civ,5)
2793            imax=4;
2794        elseif isequal(Civ,6) %patch2
2795            imax=6;
2796        end
2797    case 'civdata'
2798        menu={'civ1';'filter1';'civ2';'filter2'};
2799        if isequal(Civ,0)
2800            imax=0;
2801        elseif isequal(Civ,1) || isequal(Civ,2)
2802            imax=1;
2803        elseif isequal(Civ,3)
2804            imax=2;
2805        elseif isequal(Civ,4) || isequal(Civ,5)
2806            imax=3;
2807        elseif isequal(Civ,6) %patch2
2808            imax=4;
2809        end
2810end
2811menu=menu(1:imax);
Note: See TracBrowser for help on using the repository browser.