Commit 32cccb3682b3d946cc6a6aa0422654aba0097ab9

Authored by Jean-Philippe Bernard
1 parent 38087e96
Exists in master

first commit

Showing 1 changed file with 6 additions and 3 deletions   Show diff stats
LabTools/IRAP/JPB/phangs_compare_seds_isrf.pro
... ... @@ -52,20 +52,23 @@ FOR j=0L,Nseds-1 DO BEGIN
52 52  
53 53 ENDFOR
54 54  
55   -stop
56   -
57 55 win=0L
58 56 xtit='True parameter ('+isrf_class_str+')'
59 57 ytit='recovered parameter (Mathis ISRF)'
60 58  
61 59 window,win & win=win+1
62 60 cgplot,true_params[*,0],fitted_params[*,0],tit='G0',psym=4,/xlog,/ylog,xtit=xtit,ytit=ytit
63   -cgoplot,!x.crange,!y.crange,linestyle=1
  61 +cgoplot,10^!x.crange,10^!y.crange,linestyle=2,color='red',thickness=3
  62 +
64 63 window,win & win=win+1
65 64 cgplot,true_params[*,1],fitted_params[*,1],tit='Ypah',psym=4,/xlog,/ylog,xtit=xtit,ytit=ytit
  65 +cgoplot,10^!x.crange,10^!y.crange,linestyle=2,color='red',thickness=3
  66 +
66 67 window,win & win=win+1
67 68 cgplot,true_params[*,2],fitted_params[*,2],tit='Yvsg',psym=4,/xlog,/ylog,xtit=xtit,ytit=ytit
68 69 cgoplot,10^!x.crange,10^!y.crange,linestyle=2,color='red',thickness=3
69 70  
  71 +stop
  72 +
70 73 END
71 74  
... ...