Blame view

src/idl/dustem_read_lambda.pro 191 Bytes
427f1205   Jean-Michel Glorian   version 4.2 merged
1
2
3
4
5
6
7
8
9
10
11
FUNCTION dustem_read_lambda,file,silent=silent

readcol,file,lambda,silent=silent
Nlambda=n_elements(lambda)
one_st={lambda:0.}
st=replicate(one_st,Nlambda)
st.lambda=lambda

return,st

END