Blame view

src/idl/dustem_read_specem.pro 294 Bytes
427f1205   Jean-Michel Glorian   version 4.2 merged
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FUNCTION dustem_read_specem,file,silent=silent

;  READ(UNIT = fspecem%unit,FMT = *) COEFFISRF, NTEMP,NSPINC,NIT

readcol,file,coeffisrf,ntemp,nspinc,nit,silent=silent

st={coeffisrf:0.,ntemp:0,nspinc:0,nit:0}

st.coeffisrf=coeffisrf
st.ntemp=ntemp
st.nspinc=nspinc
st.nit=nit

return,st

END