Blame view

src/idl/dustem_read_calor_lv.pro 1.42 KB
427f1205   Jean-Michel Glorian   version 4.2 merged
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
FUNCTION dustem_read_calor_lv,file,silent=silent

st=''
Nmax=10000L
sts=strarr(Nmax)
openr,unit,file,/get_lun

;==read comments
str='' & first_char='#'
WHILE first_char EQ '#' DO BEGIN
  readf,unit,str
  first_char=strmid(str,0,1)
ENDWHILE

;read number of sizes
Nsizes=fix(str)

;Get sizes
readf,unit,st
sizes=float(str_sep(strcompress(strtrim(st,2)),' '))
Ncol=Nsizes

;==read comments
;str='' & first_char='#'
;WHILE first_char EQ '#' DO BEGIN
;  readf,unit,str
;  first_char=strmid(str,0,1)
;ENDWHILE
readf,unit,Nlines

;== read Calor
nlines=0L
first_char=' '
WHILE not eof(unit) and first_char NE '#' DO BEGIN
    readf,unit,st
    sts(nlines)=st
    nlines=nlines+1
    first_char=strmid(st,0,1)
ENDWHILE
close,unit
free_lun,unit

calor_str=sts(0:nlines-1)

Nlines=n_elements(calor_str)

calor_values=fltarr(Nlines,Ncol)
logT_values=fltarr(Nlines)
FOR i=0L,Nlines-1 DO BEGIN
  vs=str_sep(strcompress(strtrim(calor_str(i),2)),' ')
  logT_values(i)=vs(0)
  calor_values(i,*)=vs(1:*)
ENDFOR

;== Make output structure
cmd='one_st={'
FOR i=0L,Ncol-1 DO BEGIN
  cmd=cmd+'v'+strtrim(i+1,2)+':'+'0.'
  IF i NE Ncol-1 THEN BEGIN
    cmd=cmd+','
  ENDIF ELSE BEGIN
    cmd=cmd+'}'
  ENDELSE
ENDFOR
toto=execute(cmd)
calor_st=replicate(one_st,Nlines)

;=== fill in the qabs structure
FOR j=0L,Ncol-1 DO BEGIN
  calor_st.(j)=reform(calor_values(*,j))
ENDFOR

full_st={file:file,Nsizes:Nsizes,sizes:sizes,logT:logT_values,Calor:calor_st}

return,full_st

END