dustem_read_propmass.pro 1.22 KB
FUNCTION dustem_read_propmass,file,silent=silent,help=help

;+
; NAME:
;   dustem_read_propmass
;
; PURPOSE:
;   reads information relating to the mass of different grain types
;   from the corresponding .DAT file
;
; CATEGORY:
;    DustEMWrap, Distributed, LowLevel, Initialization
;
; CALLING SEQUENCE:
;   st=dustem_read_propmass(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_propmass'
   st=0.
   goto,the_end
ENDIF


  
;  DO i = 1,nesp
;     READ(UNIT = fpropmas%unit,FMT = *)propm(i)
;   END DO

readcol,file,propmass,silent=silent
nlines=n_elements(propmass)

one_st={propmass:0.}
st=replicate(one_st,Nlines)
st.propmass=propmass

the_end:
return,st

END