Commit 133b703334621faf6f3a06589043d162d1616160

Authored by Annie Hughes
1 parent 00dedb80
Exists in master

cosmetic changes to inline help

Showing 1 changed file with 23 additions and 7 deletions   Show diff stats
src/idl/dustemwrap_plot.pro
@@ -15,14 +15,24 @@ PRO dustemwrap_plot,p_dim,st, $ @@ -15,14 +15,24 @@ PRO dustemwrap_plot,p_dim,st, $
15 15
16 ;+ 16 ;+
17 ; NAME: 17 ; NAME:
  18 +; dustemwrap_plot
  19 +;
18 ; PURPOSE: 20 ; PURPOSE:
19 -; plots dustemwrap observed sed, predicted sed, predicted spectra for total Intensity, polarization in emission and extinction 21 +; plots dustemwrap observed sed, predicted sed, predicted spectra for total intensity, polarization in emission and extinction
  22 +;
20 ; CATEGORY: 23 ; CATEGORY:
21 -; DustEMWrap 24 +; DustEMWrap, Distributed, Plotting, Mid-Level
  25 +;
22 ; CALLING SEQUENCE: 26 ; CALLING SEQUENCE:
23 -; dustemwrap_plot,p_dim,st,dustem_sed,SED_spec,dustem_qsed,Q_spec,dustem_used,U_spec,dustem_polsed,P_spec,dustem_polfrac,SP_spec,dustem_psi_em,PSI_spec,dustem_ext,EXT_spec,dustem_qext,QEXT_spec,dustem_uext,UEXT_spec,dustem_polext,POLEXT_spec,dustem_fpolext,SPEXT_spec,dustem_psi_ext,PSIEXT_spec,_extra=_extra 27 +; dustemwrap_plot,p_dim,st,dustem_sed,SED_spec,dustem_qsed,Q_spec,dustem_used,U_spec $
  28 +; ,dustem_polsed,P_spec,dustem_polfrac,SP_spec,dustem_psi_em,PSI_spec $
  29 +; ,dustem_ext,EXT_spec,dustem_qext,QEXT_spec,dustem_uext,UEXT_spec $
  30 +; ,dustem_polext,POLEXT_spec,dustem_fpolext,SPEXT_spec,dustem_psi_ext,PSIEXT_spec $
  31 +; ,_extra=_extra
  32 +;
24 ; INPUTS: 33 ; INPUTS:
25 ; p_dim 34 ; p_dim
  35 +;
26 ; OPTIONAL INPUT PARAMETERS: 36 ; OPTIONAL INPUT PARAMETERS:
27 ; st 37 ; st
28 ; dustem_sed 38 ; dustem_sed
@@ -37,6 +47,7 @@ PRO dustemwrap_plot,p_dim,st, $ @@ -37,6 +47,7 @@ PRO dustemwrap_plot,p_dim,st, $
37 ; dustem_polext 47 ; dustem_polext
38 ; dustem_fpolext 48 ; dustem_fpolext
39 ; dustem_psi_ext 49 ; dustem_psi_ext
  50 +;
40 ; OUTPUTS: 51 ; OUTPUTS:
41 ; dustem_sed 52 ; dustem_sed
42 ; dustem_qsed 53 ; dustem_qsed
@@ -62,24 +73,30 @@ PRO dustemwrap_plot,p_dim,st, $ @@ -62,24 +73,30 @@ PRO dustemwrap_plot,p_dim,st, $
62 ; POLEXT_spec 73 ; POLEXT_spec
63 ; SPEXT_spec 74 ; SPEXT_spec
64 ; PSIEXT_spec 75 ; PSIEXT_spec
  76 +;
65 ; OPTIONAL OUTPUT PARAMETERS: 77 ; OPTIONAL OUTPUT PARAMETERS:
66 ; 78 ;
67 ; ACCEPTED KEY-WORDS: 79 ; ACCEPTED KEY-WORDS:
68 ; help 80 ; help
  81 +;
69 ; COMMON BLOCKS: 82 ; COMMON BLOCKS:
70 ; None 83 ; None
  84 +;
71 ; SIDE EFFECTS: 85 ; SIDE EFFECTS:
72 -; Does a plot 86 +; Generates plots!
  87 +;
73 ; RESTRICTIONS: 88 ; RESTRICTIONS:
74 ; The DustEM fortran code must be installed 89 ; The DustEM fortran code must be installed
75 ; The DustEMWrap IDL code must be installed 90 ; The DustEMWrap IDL code must be installed
  91 +;
76 ; PROCEDURES AND SUBROUTINES USED: 92 ; PROCEDURES AND SUBROUTINES USED:
77 ; 93 ;
78 -; EXAMPLES 94 +; EXAMPLES:
79 ; 95 ;
80 ; MODIFICATION HISTORY: 96 ; MODIFICATION HISTORY:
81 -; Written by Ilyes Choubani 97 +; Written by Ilyes Choubani 2022
82 ; Evolution details on the DustEMWrap gitlab. 98 ; Evolution details on the DustEMWrap gitlab.
  99 +; See http://dustemwrap.irap.omp.eu/ for FAQ and help.
83 ;- 100 ;-
84 101
85 IF keyword_set(help) THEN BEGIN 102 IF keyword_set(help) THEN BEGIN
@@ -104,7 +121,6 @@ IF not keyword_set(st) THEN BEGIN @@ -104,7 +121,6 @@ IF not keyword_set(st) THEN BEGIN
104 toto = dustem_compute_stokes(p_dim,st=st,Q_spec=Q_spec,U_spec=U_spec,PSI_spec=PSI_spec,dustem_psi_em=dustem_psi_em) 121 toto = dustem_compute_stokes(p_dim,st=st,Q_spec=Q_spec,U_spec=U_spec,PSI_spec=PSI_spec,dustem_psi_em=dustem_psi_em)
105 dustem_qsed = toto[0] 122 dustem_qsed = toto[0]
106 dustem_used = toto[1] 123 dustem_used = toto[1]
107 - ;stop  
108 124
109 endif 125 endif
110 endif 126 endif