/[MITgcm]/MITgcm_contrib/gmaze_pv/pv_checkpath.m
ViewVC logotype

Contents of /MITgcm_contrib/gmaze_pv/pv_checkpath.m

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.3 - (show annotations) (download)
Mon Jul 10 15:09:01 2006 UTC (19 years ago) by gmaze
Branch: MAIN
Changes since 1.2: +2 -2 lines
add PVflux diag and update

1 %
2 % [] = pv_checkpath()
3 %
4 % This function detects where the package gmaze_pv is installed
5 % (the upper level directory where the function volbet2iso
6 % is found) and ensure that sub-directories are in the path
7 %
8
9 function [] = pv_checkpath()
10
11 % Windows/Linux compatibility
12 global sla
13 sla = '/';
14 if ispc , sla = '\'; end
15
16
17 % Determine the directory name where the package is installed:
18 w = which('volbet2iso');
19 packdir = w(1:length(w)-12);
20
21
22 % Try to found needed subdirectories:
23
24 subdir = struct('name',{'subfct','test','visu'});
25
26 for id = 1 : size(subdir(:),1)
27 subdirname = subdir(id).name;
28 fullsubdir = strcat(packdir,sla,subdirname);
29 if isempty(findstr(path,fullsubdir))
30 addpath(fullsubdir)
31 end %if
32 end %for

  ViewVC Help
Powered by ViewVC 1.1.22