Blame view

src/idl/dustem_write_grain.pro 294 Bytes
427f1205   Jean-Michel Glorian   version 4.2 merged
1
2
PRO dustem_write_grain,file,st

e69bf245   Jean-Philippe Bernard   improved
3
4
;stop

37b5d8a7   Jean-Philippe Bernard   fixed to adapt gr...
5
message,'Obsolete',/continue
452c334e   Ilyes Choubani   Implementation Of...
6
;stop
37b5d8a7   Jean-Philippe Bernard   fixed to adapt gr...
7

427f1205   Jean-Michel Glorian   version 4.2 merged
8
9
10
11
12
13
14
15
16
17
18
19
20
OPENW,unit,file,/get_lun

Ntypes=n_elements(st)

printf,unit,ntypes
FOR i=0L,Ntypes-1 DO BEGIN
  printf,unit,st(i).type,st(i).albmax,st(i).densgr,st(i).ngem,st(i).hydro,st(i).ioni
ENDFOR

close,unit
free_lun,unit

END