Blame view

src/idl/dustem_define_la_common.pro 1.04 KB
42e5460f   Jean-Philippe Bernard   First commit
1
2
PRO dustem_define_la_common

38a17554   Annie Hughes   updated help
3
;+
7236349e   Annie Hughes   comments help
4
5
; NAME:
;   dustem_define_la_common
38a17554   Annie Hughes   updated help
6
;
7236349e   Annie Hughes   comments help
7
8
; PURPOSE:
;   Defines common blocks needed by the la_ routines
38a17554   Annie Hughes   updated help
9
;
7236349e   Annie Hughes   comments help
10
11
; CATEGORY:
;    DustEMWrap, Distributed, Low-Level, Initialization
38a17554   Annie Hughes   updated help
12
;
7236349e   Annie Hughes   comments help
13
14
; CALLING SEQUENCE:
;   dustem_define_la_common
38a17554   Annie Hughes   updated help
15
;
7236349e   Annie Hughes   comments help
16
17
; INPUTS:
;    None
38a17554   Annie Hughes   updated help
18
;
7236349e   Annie Hughes   comments help
19
20
; OPTIONAL INPUT PARAMETERS:
;    None
38a17554   Annie Hughes   updated help
21
;
7236349e   Annie Hughes   comments help
22
23
; OUTPUTS:
;    None
38a17554   Annie Hughes   updated help
24
;
7236349e   Annie Hughes   comments help
25
26
; OPTIONAL OUTPUT PARAMETERS:
;    None
38a17554   Annie Hughes   updated help
27
;
7236349e   Annie Hughes   comments help
28
29
; ACCEPTED KEY-WORDS:
;   None
38a17554   Annie Hughes   updated help
30
;
7236349e   Annie Hughes   comments help
31
32
; COMMON BLOCKS:
;    ERROR_CURRENT; SESSION_MODE; STATUS_BOOL
38a17554   Annie Hughes   updated help
33
;
7236349e   Annie Hughes   comments help
34
35
; SIDE EFFECTS:
;    Initializes common blocks
38a17554   Annie Hughes   updated help
36
;
7236349e   Annie Hughes   comments help
37
38
; RESTRICTIONS:
;    None
38a17554   Annie Hughes   updated help
39
;
7236349e   Annie Hughes   comments help
40
41
; PROCEDURES AND SUBROUTINES USED:
;    None
38a17554   Annie Hughes   updated help
42
;
7236349e   Annie Hughes   comments help
43
44
; EXAMPLES
;    dustem_define_la_common
38a17554   Annie Hughes   updated help
45
;
7236349e   Annie Hughes   comments help
46
47
48
49
50
51
52
; MODIFICATION HISTORY:
;    Written 2007
;    Evolution details on the DustEMWrap gitlab.
;    See http://dustemwrap.irap.omp.eu/ for FAQ and help.  
;-


42e5460f   Jean-Philippe Bernard   First commit
53
54
55
56
COMMON SESSION_BLOCK, SESSION_MODE, ERROR_CURRENT, STATUS_BOOL
ERROR_CURRENT=0                                               
SESSION_MODE=0                                                
STATUS_BOOL=0                                                 
42e5460f   Jean-Philippe Bernard   First commit
57
END