source: trunk/src/init.pro @ 15

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

fix thanks to coding rules; typo

  • Property svn:keywords set to Id
File size: 3.3 KB
Line 
1;+
2;
3; .. _init.pro:
4;
5; ========
6; init.pro
7; ========
8;
9;
10; IDL Version 6.2, Mac OS X (darwin ppc m32)
11;
12; Journal File for marina@ino.lodyc.jussieu.fr
13;
14; Working directory: /Users/marina/WORK/SOURCES/SAXO_DIR
15;
16; This is the initialisation file.
17; it defines the !path and the defaut values of some of the common variables
18;
19; :see also:
20;
21; SAXO
22;
23; :ref:`init_pom.pro`
24;
25; :todo:
26;
27; header
28;
29; replace hard coded path using ${POMME}
30;
31; :history:
32;
33; - fplod 20101129T110610Z aedon.locean-ipsl.upmc.fr (Darwin)
34;
35;   * add reStructuredText minimal header
36;
37; - marina 20060314T135342Z ino.lodyc.jussieu.fr
38;
39;   * creation
40;
41;-
42;
43; path definition
44;
45!path = expand_path('+' + '/Users/marina/WORK/PROJETS/TERMINE/POMME/PIERREK/IDL') $
46      + ':' + expand_path('+' + '/Users/marina/WORK/SOURCES/SAXO_DIR') $
47      + ':' + expand_path('+' + !dir)
48;
49; compatibility with the old version
50;
51keep_compatibility, 0
52;
53; define all the commons
54;
55@all_cm
56;
57; define default directories
58;
59homedir = isadirectory('/Users/marina/WORK/PROJETS/TERMINE/POMME/PIERREK/IDL/', title = 'Select the default HOME directory')
60iodir = isadirectory('/Users/marina/DATA/DATA_PIERREK', title = 'Select the default IO directory')
61psdir = isadirectory('/Users/marina/WORK/PROJETS/TERMINE/POMME/PIERREK/FIG', title = 'Select the default postscripts directory')
62imagedir = psdir
63animdir = psdir
64;
65; define printer parameters
66;
67printer_human_names = strarr(2)
68printer_machine_names = strarr(2)
69print_command = strarr(2)
70printer_human_names[0] = 'x4'
71printer_machine_names[0] = 'x4'
72print_command[0] = '\lpr -P x4'
73printer_human_names[1] = 'hpl4'
74printer_machine_names[1] = 'hpl4'
75print_command[1] = '\lpr -P hpl4'
76;
77; colors ...
78;
79device, decomposed = 0
80device, retain = 2
81lct, 39
82;
83; postscript parameters ...
84;
85key_portrait = 1
86page_size = [20.9903, 29.7039]
87windowsize_scale = 0.8
88archive_ps = 0
89;
90;========================================================
91; end of the part that should be modified by the users...
92;========================================================
93;
94; default definitions of many other common parameters...
95jpiglo = 1L
96jpjglo = 1L
97jpkglo = 1L
98jpidta = jpiglo
99jpjdta = jpjglo
100jpkdta = jpjglo
101jpi = 1L
102jpj = 1L
103jpk = 1L
104jpt = 1L
105time = 0L
106ixminmesh = -1L
107ixmaxmesh = -1L
108iyminmesh = -1L
109iymaxmesh = -1L
110izminmesh = -1L
111izmaxmesh = -1L
112ixmindta = 0L
113ixmaxdta = jpidta - 1
114iymindta = 0L
115iymaxdta = jpjdta - 1
116izmindta = 0L
117izmaxdta = jpkdta - 1
118key_shift = 0L
119key_periodic = 0L
120key_yreverse = 0L
121key_zreverse = 0L
122key_stride = [1, 1, 1]
123ccmeshparameters ={filename:'No File', filetype:'nothing' $
124, jpiglo:jpiglo, jpjglo:jpjglo, jpkglo:jpkglo $
125, jpi:jpi, jpj:jpj, jpk:jpk $
126, ixminmesh:ixminmesh, ixmaxmesh:ixmaxmesh $
127, iyminmesh:iyminmesh, iymaxmesh:iymaxmesh $
128, izminmesh:izminmesh, izmaxmesh:izmaxmesh $
129, key_shift:key_shift, key_periodic:key_periodic $
130, triangulation:-1, boundary:[-180, 180]}
131ccreadparameters = {funclec_name:'No File' $
132, jpidta:jpidta, jpjdta:jpjdta, jpkdta:jpkdta $
133, ixmindta:ixmindta, ixmaxdta:ixmaxdta $
134, iymindta:iymindta, iymaxdta:iymaxdta $
135, izmindta:izmindta, izmaxdta:izmaxdta}
136lon1 = 0
137lon2 = 1
138lat1 = 0
139lat2 = 1
140vert1 = 0
141vert2 = 1
142valmask = 1.e20
143vargrid = 'T'
144varname = ''
145varexp = ''
146varunit = ''
147vardate= '0'
148@updateold
149;
150print,  'iodir =', iodir
151
152;open saxo online help:
153;ONLINE_HELP,book="/Users/marina/WORK/SOURCES/SAXO_DIR/SRC/Documentation/idldoc_assistant_output/idldoc-lib.adp"
Note: See TracBrowser for help on using the repository browser.