source: trunk/usr/init.pro @ 235

Last change on this file since 235 was 164, checked in by pinsard, 15 years ago

set svn Id keyword on .pro files

  • Property svn:keywords set to Id
File size: 2.9 KB
Line 
1; IDL Version 6.0 (linux x86 m32)
2; Journal File for mklod@chromios.locean-ipsl.upmc.fr
3; Working directory: /.autofs//home/mklod/IDL
4; Date: Tue Mar 14 10:26:23 2006
5 
6;
7; This is the initialisation file.
8; it defines the !path and the defaut values of some of the common variables
9;
10; this is supposed to speed-up IDL...
11;
12; a = fltarr(1000,1000,100)
13; a = 0
14;
15; path definition
16;
17!path = expand_path('+' + '/.autofs/home/mklod/SVN/TRUNK') $ ; procs local home
18      + ':' + expand_path('+' + '/.autofs/home/mklod/SAXO_new_svn') $ ; saxo home
19      + ':' + expand_path('+' + !dir)
20;
21; compatibility with the old version
22;
23keep_compatibility, 1
24;
25; define all the commons
26;
27@all_cm
28;
29; define default directories
30;
31homedir = isadirectory('/.autofs/home/mklod/SVN/TRUNK/', title = 'Select the default HOME directory')
32iodir = isadirectory('/.autofs/home/mklod/SVN/TRUNK/', title = 'Select the default IO directory')
33psdir = isadirectory('/.autofs/home/mklod/SVN/TRUNK/out/post_out/', title = 'Select the default postscripts directory')
34imagedir = isadirectory('/.autofs/home/mklod/SVN/TRUNK/out/post_out/', title = 'Select the default images directory')
35animdir = isadirectory('/.autofs/home/mklod/SVN/TRUNK/out/post_out/', title = 'Select the default animations directory')
36;
37; define printer parameters
38;
39printer_human_names = ''
40printer_machine_names = ''
41print_command = ''
42;
43; colors ...
44;
45device, decomposed = 0
46device, retain = 2
47lct, 39
48;
49; postscript parameters ...
50;
51key_portrait = 0
52page_size = [20.9903, 29.7039]
53windowsize_scale = 1.00000
54archive_ps = 0
55;
56;========================================================
57; end of the part that should be modified by the users...
58;========================================================
59;
60; default definitions of many other common parameters...
61jpiglo = 1L
62jpjglo = 1L
63jpkglo = 1L
64jpidta = jpiglo
65jpjdta = jpjglo
66jpkdta = jpjglo
67jpi = 1L
68jpj = 1L
69jpk = 1L
70jpt = 1L
71time = 0L
72ixminmesh = -1L
73ixmaxmesh = -1L
74iyminmesh = -1L
75iymaxmesh = -1L
76izminmesh = -1L
77izmaxmesh = -1L
78ixmindta = 0L
79ixmaxdta = jpidta-1
80iymindta = 0L
81iymaxdta = jpjdta-1
82izmindta = 0L
83izmaxdta = jpkdta-1
84key_shift = 0L
85key_periodic = 0L
86key_yreverse = 0L
87key_zreverse = 0L
88key_stride = [1, 1, 1]
89ccmeshparameters ={filename:'No File', filetype:'nothing' $
90, jpiglo:jpiglo, jpjglo:jpjglo, jpkglo:jpkglo $
91, jpi:jpi, jpj:jpj, jpk:jpk $
92, ixminmesh:ixminmesh, ixmaxmesh:ixmaxmesh $
93, iyminmesh:iyminmesh, iymaxmesh:iymaxmesh $
94, izminmesh:izminmesh, izmaxmesh:izmaxmesh $
95, key_shift:key_shift, key_periodic:key_periodic $
96, triangulation:-1, boundary:[-180, 180]}
97ccreadparameters = {funclec_name:'No File' $
98, jpidta:jpidta, jpjdta:jpjdta, jpkdta:jpkdta $
99, ixmindta:ixmindta, ixmaxdta:ixmaxdta $
100, iymindta:iymindta, iymaxdta:iymaxdta $
101, izmindta:izmindta, izmaxdta:izmaxdta}
102lon1 = 0
103lon2 = 1
104lat1 = 0
105lat2 = 1
106vert1 = 0
107vert2 = 1
108valmask = 1.e20
109vargrid = 'T'
110varname = ''
111varexp = ''
112varunit = ''
113vardate= '0'
114@updateold
115;
116
117@init_post_it
Note: See TracBrowser for help on using the repository browser.