Blame view

LabTools/IRAP/JPB/phangs_compare_seds_isrf.pro 5.47 KB
694026f6   Jean-Philippe Bernard   commented
1
PRO phangs_compare_seds_isrf,isrf_class $
026c2ba5   Jean-Philippe Bernard   improved
2
							,isrf_class_analysis=isrf_class_analysis $
694026f6   Jean-Philippe Bernard   commented
3
4
5
6
							,N_seds=N_seds $
							,normalize=normalize $
							,weighted=weighted $
							,include_herschel_filters=include_herschel_filters
42b6dd57   Jean-Philippe Bernard   first commit
7

694026f6   Jean-Philippe Bernard   commented
8
9
;phangs_compare_seds_isrf,0,N_seds=100L    ;test works
;phangs_compare_seds_isrf,0,N_seds=100L,/weighted   ;not working because weights are infinite
026c2ba5   Jean-Philippe Bernard   improved
10
;phangs_compare_seds_isrf,0,N_seds=100L,/normalize   ;not working some mismatch
38087e96   Jean-Philippe Bernard   first commit
11

694026f6   Jean-Philippe Bernard   commented
12
13
;phangs_compare_seds_isrf,15,N_seds=100L
;phangs_compare_seds_isrf,15,N_seds=1000L,/normalize
026c2ba5   Jean-Philippe Bernard   improved
14
15
16
17
;phangs_compare_seds_isrf,15,N_seds=1000L,/normalize,/weighted
;phangs_compare_seds_isrf,15,N_seds=1000L,/normalize,/weighted,/include_herschel_filters

;phangs_compare_seds_isrf,15,N_seds=1000L,/normalize,/weighted,/include_herschel_filters,isrf_class_analysis=14
694026f6   Jean-Philippe Bernard   commented
18
19

define_la_common
42b6dd57   Jean-Philippe Bernard   first commit
20
21

dir=!phangs_data_dir+'/ISRF/GRIDS/'
38087e96   Jean-Philippe Bernard   first commit
22
isrf_class_str='_isrfclass'+strtrim(isrf_class,2)
42b6dd57   Jean-Philippe Bernard   first commit
23
24
25
model='DBP90'
table_name=dir+model+'_MuseISRF_JWST_G0_YPAH_YVSG_4Phangs'+isrf_class_str+'.fits'
st=mrdfits(table_name,1,h)
8cd73405   Jean-Philippe Bernard   first commit
26
Nst=n_elements(st)
42b6dd57   Jean-Philippe Bernard   first commit
27

694026f6   Jean-Philippe Bernard   commented
28
29
30
31
32

use_filters_names=['F360M','F0770W','F1000W','F1130W','F2100W']
IF keyword_set(include_herschel_filters) THEN BEGIN
	use_filters_names=['F360M','F0770W','F1000W','F1130W','F2100W','PACS_BLUE','PACS_GREEN','PACS_RED','PSW','PMW','PLW']
ENDIF
51c39c71   Jean-Philippe Bernard   first commit
33
filters=dustem_filter_names2filters(use_filters_names)
758aaa55   Jean-Philippe Bernard   first commit
34
Nfilters=n_elements(filters)
42b6dd57   Jean-Philippe Bernard   first commit
35
36

ii=100L
c750f66d   Jean-Philippe Bernard   first commit
37

38087e96   Jean-Philippe Bernard   first commit
38
Nseds=100L
0f653ae3   Jean-Philippe Bernard   first commit
39
40
IF keyword_set(N_seds) THEN Nseds=N_seds

42b6dd57   Jean-Philippe Bernard   first commit
41
Nparams=3
8cd73405   Jean-Philippe Bernard   first commit
42
true_params=fltarr(Nseds,Nparams)
2d3601c1   Jean-Philippe Bernard   first commit
43
fitted_params=fltarr(Nseds,Nparams)
694026f6   Jean-Philippe Bernard   commented
44
facts=fltarr(Nseds)
026c2ba5   Jean-Philippe Bernard   improved
45
chi2s=fltarr(Nseds)
8cd73405   Jean-Philippe Bernard   first commit
46
47
seed=1

026c2ba5   Jean-Philippe Bernard   improved
48
49
50
51
52
use_isrf_class_analysis=0L
IF keyword_set(isrf_class_analysis) THEN BEGIN
	use_isrf_class_analysis=isrf_class_analysis
ENDIF

8cd73405   Jean-Philippe Bernard   first commit
53
FOR j=0L,Nseds-1 DO BEGIN
1045844e   Jean-Philippe Bernard   first commit
54
	;seed=1
b171b249   Jean-Philippe Bernard   first commit
55
	inn=abs(randomu(seed))
026c2ba5   Jean-Philippe Bernard   improved
56
    ii=long(inn*Nst)
38087e96   Jean-Philippe Bernard   first commit
57
    ;print,inn,ii
8cd73405   Jean-Philippe Bernard   first commit
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
	sed=dustem_initialize_sed(Nfilters)
	;sed=fltarr(Nfilters)
	tags=tag_names(st)
	FOR i=0L,Nfilters-1 DO BEGIN
		ind=where(tags EQ 'I'+filters[i],count)
		sed[i].filter=filters[i]
		sed[i].stokesI=st[ii].(ind[0])
	ENDFOR
	sed.sigmaii=sed.stokesI*1.e-5
	FOR i=0L,Nparams-1 DO BEGIN
	  true_params[j,i]=st[ii].(i)
	ENDFOR

	;stop

026c2ba5   Jean-Philippe Bernard   improved
73
74
	;fit_isrf_class_str='_isrfclass0'
	fit_isrf_class_str='_isrfclass'+strtrim(use_isrf_class_analysis,2)
5831d1e9   Jean-Philippe Bernard   first commit
75
	table_name_2=dir+model+'_MuseISRF_JWST_G0_YPAH_YVSG_4Phangs'+fit_isrf_class_str+'.fits'
026c2ba5   Jean-Philippe Bernard   improved
76
    ;print,ii
f11c9166   Jean-Philippe Bernard   improved
77
	params=dustem_brute_force_fit(sed,table_name_2,filters,fact=fact,chi2=chi2,normalize=normalize,rchi2=rchi2,show_sed=show_sed $
8cd73405   Jean-Philippe Bernard   first commit
78
			   					 ,params_hit=params_hit,params_uncertainties=params_uncertainties,params_min=params_min,params_max=params_max $
441c3551   Jean-Philippe Bernard   improved
79
			   					 ,fixed_parameters_description=fixed_parameters_description,fixed_parameters_values=fixed_parameters_values $
026c2ba5   Jean-Philippe Bernard   improved
80
81
82
83
84
85
			   					 ,weighted_params=weighted_params,best_sed=best_sed,best_grid_sed=best_grid_sed,all_chi2s=all_chi2s)
	;print,params,fact
    ;IF fact GT 2 THEN BEGIN
    ;	print,ii,fact,chi2
    ;	stop
    ;ENDIF
694026f6   Jean-Philippe Bernard   commented
86
    facts[j]=fact
026c2ba5   Jean-Philippe Bernard   improved
87
    chi2s[j]=chi2
58e1b6ca   Jean-Philippe Bernard   improved
88
89
90
91
    params[1]=params[1]/fact
    params[2]=params[2]/fact
    weighted_params[1]=weighted_params[1]/fact
    weighted_params[2]=weighted_params[2]/fact
441c3551   Jean-Philippe Bernard   improved
92
    ;fitted_params[j,*]=params
4bab2444   Jean-Philippe Bernard   improved
93
94
95
96
97
    IF keyword_set(weighted) THEN BEGIN
    	fitted_params[j,*]=weighted_params
	ENDIF ELSE BEGIN
		fitted_params[j,*]=params
	ENDELSE
8cd73405   Jean-Philippe Bernard   first commit
98
ENDFOR
42b6dd57   Jean-Philippe Bernard   first commit
99

694026f6   Jean-Philippe Bernard   commented
100
101
;stop

38087e96   Jean-Philippe Bernard   first commit
102
xtit='True parameter ('+isrf_class_str+')'
3a667b1d   Jean-Philippe Bernard   first commit
103
104
ytit='recovered parameter (Mathis ISRF)'

694026f6   Jean-Philippe Bernard   commented
105
106
107
108
109
110
111
112
tit='G0'

tit_str=':'
IF keyword_set(weighted) THEN tit_str=tit_str+' weighted'
IF keyword_set(normalize) THEN tit_str=tit_str+' normalized'
IF keyword_set(include_herschel_filters) THEN tit_str=tit_str+' MUSE+Herschel' ELSE tit_str=tit_str+' MUSE'

;window,win & win=win+1
026c2ba5   Jean-Philippe Bernard   improved
113
114
115
116
win=0L
!p.multi=[0,1,3]

window,win,xsize=500,ysize=900 & win=win+1
694026f6   Jean-Philippe Bernard   commented
117
118
xrange=minmax(true_params[*,0])
cgplot,true_params[*,0],fitted_params[*,0],tit='G0'+tit_str,psym=4,/xlog,/ylog,xtit=xtit,ytit=ytit,xrange=xrange,yrange=xrange
32cccb36   Jean-Philippe Bernard   first commit
119
120
cgoplot,10^!x.crange,10^!y.crange,linestyle=2,color='red',thickness=3

694026f6   Jean-Philippe Bernard   commented
121
122
123
;window,win & win=win+1
xrange=minmax(true_params[*,1])
cgplot,true_params[*,1],fitted_params[*,1],tit='Ypah'+tit_str,psym=4,/xlog,/ylog,xtit=xtit,ytit=ytit,xrange=xrange,yrange=xrange
32cccb36   Jean-Philippe Bernard   first commit
124
125
cgoplot,10^!x.crange,10^!y.crange,linestyle=2,color='red',thickness=3

694026f6   Jean-Philippe Bernard   commented
126
127
128
;window,win & win=win+1
xrange=minmax(true_params[*,2])
cgplot,true_params[*,2],fitted_params[*,2],tit='Yvsg'+tit_str,psym=4,/xlog,/ylog,xtit=xtit,ytit=ytit,xrange=xrange,yrange=xrange
38087e96   Jean-Philippe Bernard   first commit
129
cgoplot,10^!x.crange,10^!y.crange,linestyle=2,color='red',thickness=3
3a667b1d   Jean-Philippe Bernard   first commit
130

026c2ba5   Jean-Philippe Bernard   improved
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
window,win,xsize=500,ysize=900 & win=win+1
xrange=minmax(true_params[*,0])
cgplot,true_params[*,0],fitted_params[*,0],tit='G0'+tit_str,psym=4,/xlog,/ylog,xtit=xtit,ytit=ytit,xrange=xrange,yrange=xrange
cgoplot,10^!x.crange,10^!y.crange,linestyle=2,color='red',thickness=3

;window,win & win=win+1
xrange=minmax(true_params[*,1])
cgplot,true_params[*,1]*facts,fitted_params[*,1]*facts,tit='Ypah'+tit_str,psym=4,/xlog,/ylog,xtit=xtit,ytit=ytit,xrange=xrange,yrange=xrange
cgoplot,10^!x.crange,10^!y.crange,linestyle=2,color='red',thickness=3

;window,win & win=win+1
xrange=minmax(true_params[*,2])
cgplot,true_params[*,2]*facts,fitted_params[*,2]*facts,tit='Yvsg'+tit_str,psym=4,/xlog,/ylog,xtit=xtit,ytit=ytit,xrange=xrange,yrange=xrange
cgoplot,10^!x.crange,10^!y.crange,linestyle=2,color='red',thickness=3

cleanplot
window,win & win=win+1
diff_pah_perc=abs(true_params[*,1]-fitted_params[*,1])/true_params[*,1]*100.
cgplot,facts,diff_pah_perc,psym=4,xtit='fact',ytit='true-fitted Ypah [%]',/xlog,/ylog
32cccb36   Jean-Philippe Bernard   first commit
150

694026f6   Jean-Philippe Bernard   commented
151
152
cleanplot
window,win & win=win+1
026c2ba5   Jean-Philippe Bernard   improved
153
154
155
cgplot,chi2s,diff_pah_perc,psym=4,xtit='chi2',ytit='true-fitted Ypah [%]',/xlog,/ylog

stop
694026f6   Jean-Philippe Bernard   commented
156

42b6dd57   Jean-Philippe Bernard   first commit
157
END