dustem_read_taille.pro 1.29 KB
FUNCTION dustem_read_taille,file,silent=silent,help=help

;+
; NAME:
;   dustem_read_taille
;
; PURPOSE:
;   reads information relating to the grain size distribution 
;   from the corresponding .DAT file
;
; CATEGORY:
;    DustEMWrap, Distributed, LowLevel, Initialization
;
; CALLING SEQUENCE:
;   st=dustem_read_taille(file)
;
; INPUTS:
;    file  : input file to be read
;
; OPTIONAL INPUT PARAMETERS:
;
; OUTPUTS:
;    st   : dustem data structure
;
; OPTIONAL OUTPUT PARAMETERS:
;
; ACCEPTED KEY-WORDS:
;    help     : writes this help
;
; COMMON BLOCKS:
;    None
;
; SIDE EFFECTS:
;
; RESTRICTIONS:
;    The DustEM fortran code must be installed
;    The DustEMWrap IDL code must be installed
;
; PROCEDURES AND SUBROUTINES USED:  
;
; EXAMPLES:
;
; MODIFICATION HISTORY:
;    Evolution details on the DustEMWrap gitlab.
;    See http://dustemwrap.irap.omp.eu/ for FAQ and help.  
;-
  
IF keyword_set(help) THEN BEGIN
   doc_library,'dustem_read_taille'
   st=0.
   goto,the_end
ENDIF
  
;READ(UNIT = ftaille%unit,FMT = *) alpha(i), tmin(i),&
;          & tmax(i), ndiscr(i)

readcol,file,alpha,tmin,tmax,ndiscr,silent=silent
nlines=n_elements(alpha)

one_st={alpha:0.,tmin:0.,tmax:0.,ndiscr:0}
st=replicate(one_st,Nlines)
st.alpha=alpha
st.tmin=tmin
st.tmax=tmax
st.ndiscr=ndiscr

the_end:
return,st

END