├── AUTHORS ├── COPYING ├── ChangeLog ├── IDL ├── Contrib │ ├── ccm_unred.pro │ ├── cgerrormsg.pro │ ├── compare_struct.pro │ ├── cosmo_param.pro │ ├── euler.pro │ ├── fxaddpar.pro │ ├── fxmove.pro │ ├── fxpar.pro │ ├── fxparpos.pro │ ├── fxposit.pro │ ├── gettok.pro │ ├── lumdist.pro │ ├── match.pro │ ├── mpfit.pro │ ├── mrd_hread.pro │ ├── mrd_skip.pro │ ├── mrd_struct.pro │ ├── mrdfits.pro │ ├── qsimp.pro │ ├── remchar.pro │ ├── repchr.pro │ ├── setdefaultvalue.pro │ ├── sxpar.pro │ ├── trapzd.pro │ ├── valid_num.pro │ └── zparcheck.pro ├── Glib │ ├── LICENSE │ ├── README.md │ ├── gcompile_glib.pro │ ├── gfit │ │ ├── README │ │ ├── components │ │ │ ├── gfit_comp_example.pro │ │ │ ├── gfit_comp_gauss.pro │ │ │ ├── gfit_comp_powerlaw.pro │ │ │ └── gfit_comp_simplepar.pro │ │ ├── data_type │ │ │ ├── gfit_teststat_gauss.pro │ │ │ └── gfit_weighted_dev_gauss.pro │ │ ├── examples │ │ │ ├── gfit_ex1.pro │ │ │ ├── gfit_ex2.pro │ │ │ ├── gfit_ex3.pro │ │ │ ├── gfit_ex4.pro │ │ │ ├── gfit_ex5.pro │ │ │ ├── gfit_ex_fakedata.pro │ │ │ └── user_defined_func.pro │ │ ├── gfit_add_aux.pro │ │ ├── gfit_add_comp.pro │ │ ├── gfit_add_data.pro │ │ ├── gfit_add_obs.pro │ │ ├── gfit_compile.pro │ │ ├── gfit_component.pro │ │ ├── gfit_get_covar.pro │ │ ├── gfit_get_par.pro │ │ ├── gfit_init.pro │ │ ├── gfit_nfree.pro │ │ ├── gfit_parse_comp_from_text.pro │ │ ├── gfit_plot.pro │ │ ├── gfit_plot_resid.pro │ │ ├── gfit_prepare_eval.pro │ │ ├── gfit_rebin.pro │ │ ├── gfit_report.pro │ │ ├── gfit_restore.pro │ │ ├── gfit_run.pro │ │ └── gfit_set_parval.pro │ ├── glib_init.pro │ ├── gnuplot │ │ ├── README │ │ ├── ggp.pro │ │ ├── ggp_clear.pro │ │ ├── ggp_cmd.pro │ │ ├── ggp_data.pro │ │ ├── ggp_get_state.pro │ │ ├── ggp_hist.pro │ │ ├── ggp_plot.pro │ │ ├── ggp_plot_struct.pro │ │ ├── ggp_prepare_data.pro │ │ ├── ggp_set_state.pro │ │ ├── gplot.pro │ │ └── usage.pro │ ├── phys │ │ └── gpc.pro │ └── utils │ │ ├── gassert.pro │ │ ├── gcfmt.pro │ │ ├── gdim.pro │ │ ├── gdist.pro │ │ ├── gfexists.pro │ │ ├── gfloat.pro │ │ ├── ggauss.pro │ │ ├── ggen.pro │ │ ├── ggen_delta.pro │ │ ├── ghist.pro │ │ ├── gindices_array.pro │ │ ├── gisunix.pro │ │ ├── gjoin.pro │ │ ├── gkey.pro │ │ ├── gloggen.pro │ │ ├── gminmax.pro │ │ ├── gn.pro │ │ ├── gn2base.pro │ │ ├── gn2hex.pro │ │ ├── gn2s.pro │ │ ├── gnan.pro │ │ ├── gprint.pro │ │ ├── gprint_error.pro │ │ ├── gprint_mgr.pro │ │ ├── gpro_par_key.pro │ │ ├── gproduct.pro │ │ ├── gps.pro │ │ ├── greadtexttable.pro │ │ ├── greformstruct.pro │ │ ├── groutineexists.pro │ │ ├── gsearch.pro │ │ ├── gsize.pro │ │ ├── gstru_flatten.pro │ │ ├── gstru_insert.pro │ │ ├── gstru_sub.pro │ │ ├── gstru_tagnames.pro │ │ ├── gtype.pro │ │ └── usage.pro ├── gcompile.pro └── qsfit │ ├── components │ ├── SH1995 │ │ ├── ReadMe │ │ ├── convert.pl │ │ ├── r1b0005.d │ │ ├── r1b0010.d │ │ ├── r1b0030.d │ │ ├── r1b0050.d │ │ ├── r1b0075.d │ │ ├── r1b0100.d │ │ ├── r1b0125.d │ │ ├── r1b0150.d │ │ ├── r1b0200.d │ │ ├── r1b0300.d │ │ └── read.pro │ ├── VC2004 │ │ ├── TabA1 │ │ └── TabA2 │ ├── VW2001 │ │ ├── Fe2_UV191.asc │ │ ├── Fe3UV34modelB2.asc │ │ ├── Fe3_UV47.asc │ │ ├── Fe_UVtemplt_A.asc │ │ ├── Fe_UVtemplt_B.asc │ │ ├── MV_UVfe2.trz │ │ └── ReadMe │ ├── ggaltempl_mannucci01.pro │ ├── ggaltempl_mannucci01.txt │ ├── ggaltempl_swire.pro │ ├── qsfit_comp_balmer.pro │ ├── qsfit_comp_balmer_hol.dat │ ├── qsfit_comp_balmerold.pro │ ├── qsfit_comp_contabsorption.pro │ ├── qsfit_comp_emline.pro │ ├── qsfit_comp_galaxytemplate.pro │ ├── qsfit_comp_ironoptical.dat │ ├── qsfit_comp_ironoptical.pro │ ├── qsfit_comp_ironuv.dat │ ├── qsfit_comp_ironuv.pro │ ├── qsfit_comp_sbpowerlaw.pro │ └── swire │ │ ├── Arp220_template_norm.sed │ │ ├── BQSO1_template_norm.sed │ │ ├── Ell13_template_norm.sed │ │ ├── Ell2_template_norm.sed │ │ ├── Ell5_template_norm.sed │ │ ├── I19254_template_norm.sed │ │ ├── I20551_template_norm.sed │ │ ├── I22491_template_norm.sed │ │ ├── M82_template_norm.sed │ │ ├── Mrk231_template_norm.sed │ │ ├── N6090_template_norm.sed │ │ ├── N6240_template_norm.sed │ │ ├── QSO1_template_norm.sed │ │ ├── QSO2_template_norm.sed │ │ ├── Readme │ │ ├── S0_template_norm.sed │ │ ├── Sa_template_norm.sed │ │ ├── Sb_template_norm.sed │ │ ├── Sc_template_norm.sed │ │ ├── Sd_template_norm.sed │ │ ├── Sdm_template_norm.sed │ │ ├── Sey18_template_norm.sed │ │ ├── Sey2_template_norm.sed │ │ ├── Spi4_template_norm.sed │ │ ├── TQSO1_template_norm.sed │ │ ├── Torus_template_norm.sed │ │ ├── polletta.pdf │ │ └── swire_library.tar.gz │ ├── gcompile_qsfit.pro │ ├── lines.list │ └── qsfit.pro ├── README.md ├── compile.pro └── data ├── photometry.txt └── spec-0752-52251-0323.fits /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/ChangeLog -------------------------------------------------------------------------------- /IDL/Contrib/ccm_unred.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/ccm_unred.pro -------------------------------------------------------------------------------- /IDL/Contrib/cgerrormsg.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/cgerrormsg.pro -------------------------------------------------------------------------------- /IDL/Contrib/compare_struct.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/compare_struct.pro -------------------------------------------------------------------------------- /IDL/Contrib/cosmo_param.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/cosmo_param.pro -------------------------------------------------------------------------------- /IDL/Contrib/euler.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/euler.pro -------------------------------------------------------------------------------- /IDL/Contrib/fxaddpar.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/fxaddpar.pro -------------------------------------------------------------------------------- /IDL/Contrib/fxmove.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/fxmove.pro -------------------------------------------------------------------------------- /IDL/Contrib/fxpar.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/fxpar.pro -------------------------------------------------------------------------------- /IDL/Contrib/fxparpos.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/fxparpos.pro -------------------------------------------------------------------------------- /IDL/Contrib/fxposit.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/fxposit.pro -------------------------------------------------------------------------------- /IDL/Contrib/gettok.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/gettok.pro -------------------------------------------------------------------------------- /IDL/Contrib/lumdist.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/lumdist.pro -------------------------------------------------------------------------------- /IDL/Contrib/match.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/match.pro -------------------------------------------------------------------------------- /IDL/Contrib/mpfit.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/mpfit.pro -------------------------------------------------------------------------------- /IDL/Contrib/mrd_hread.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/mrd_hread.pro -------------------------------------------------------------------------------- /IDL/Contrib/mrd_skip.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/mrd_skip.pro -------------------------------------------------------------------------------- /IDL/Contrib/mrd_struct.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/mrd_struct.pro -------------------------------------------------------------------------------- /IDL/Contrib/mrdfits.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/mrdfits.pro -------------------------------------------------------------------------------- /IDL/Contrib/qsimp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/qsimp.pro -------------------------------------------------------------------------------- /IDL/Contrib/remchar.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/remchar.pro -------------------------------------------------------------------------------- /IDL/Contrib/repchr.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/repchr.pro -------------------------------------------------------------------------------- /IDL/Contrib/setdefaultvalue.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/setdefaultvalue.pro -------------------------------------------------------------------------------- /IDL/Contrib/sxpar.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/sxpar.pro -------------------------------------------------------------------------------- /IDL/Contrib/trapzd.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/trapzd.pro -------------------------------------------------------------------------------- /IDL/Contrib/valid_num.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/valid_num.pro -------------------------------------------------------------------------------- /IDL/Contrib/zparcheck.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Contrib/zparcheck.pro -------------------------------------------------------------------------------- /IDL/Glib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/LICENSE -------------------------------------------------------------------------------- /IDL/Glib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/README.md -------------------------------------------------------------------------------- /IDL/Glib/gcompile_glib.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gcompile_glib.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/README -------------------------------------------------------------------------------- /IDL/Glib/gfit/components/gfit_comp_example.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/components/gfit_comp_example.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/components/gfit_comp_gauss.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/components/gfit_comp_gauss.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/components/gfit_comp_powerlaw.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/components/gfit_comp_powerlaw.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/components/gfit_comp_simplepar.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/components/gfit_comp_simplepar.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/data_type/gfit_teststat_gauss.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/data_type/gfit_teststat_gauss.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/data_type/gfit_weighted_dev_gauss.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/data_type/gfit_weighted_dev_gauss.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/examples/gfit_ex1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/examples/gfit_ex1.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/examples/gfit_ex2.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/examples/gfit_ex2.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/examples/gfit_ex3.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/examples/gfit_ex3.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/examples/gfit_ex4.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/examples/gfit_ex4.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/examples/gfit_ex5.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/examples/gfit_ex5.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/examples/gfit_ex_fakedata.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/examples/gfit_ex_fakedata.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/examples/user_defined_func.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/examples/user_defined_func.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_add_aux.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_add_aux.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_add_comp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_add_comp.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_add_data.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_add_data.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_add_obs.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_add_obs.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_compile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_compile.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_component.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_component.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_get_covar.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_get_covar.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_get_par.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_get_par.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_init.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_init.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_nfree.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_nfree.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_parse_comp_from_text.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_parse_comp_from_text.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_plot.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_plot.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_plot_resid.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_plot_resid.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_prepare_eval.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_prepare_eval.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_rebin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_rebin.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_report.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_report.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_restore.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_restore.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_run.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_run.pro -------------------------------------------------------------------------------- /IDL/Glib/gfit/gfit_set_parval.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gfit/gfit_set_parval.pro -------------------------------------------------------------------------------- /IDL/Glib/glib_init.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/glib_init.pro -------------------------------------------------------------------------------- /IDL/Glib/gnuplot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gnuplot/README -------------------------------------------------------------------------------- /IDL/Glib/gnuplot/ggp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gnuplot/ggp.pro -------------------------------------------------------------------------------- /IDL/Glib/gnuplot/ggp_clear.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gnuplot/ggp_clear.pro -------------------------------------------------------------------------------- /IDL/Glib/gnuplot/ggp_cmd.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gnuplot/ggp_cmd.pro -------------------------------------------------------------------------------- /IDL/Glib/gnuplot/ggp_data.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gnuplot/ggp_data.pro -------------------------------------------------------------------------------- /IDL/Glib/gnuplot/ggp_get_state.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gnuplot/ggp_get_state.pro -------------------------------------------------------------------------------- /IDL/Glib/gnuplot/ggp_hist.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gnuplot/ggp_hist.pro -------------------------------------------------------------------------------- /IDL/Glib/gnuplot/ggp_plot.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gnuplot/ggp_plot.pro -------------------------------------------------------------------------------- /IDL/Glib/gnuplot/ggp_plot_struct.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gnuplot/ggp_plot_struct.pro -------------------------------------------------------------------------------- /IDL/Glib/gnuplot/ggp_prepare_data.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gnuplot/ggp_prepare_data.pro -------------------------------------------------------------------------------- /IDL/Glib/gnuplot/ggp_set_state.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gnuplot/ggp_set_state.pro -------------------------------------------------------------------------------- /IDL/Glib/gnuplot/gplot.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gnuplot/gplot.pro -------------------------------------------------------------------------------- /IDL/Glib/gnuplot/usage.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/gnuplot/usage.pro -------------------------------------------------------------------------------- /IDL/Glib/phys/gpc.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/phys/gpc.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gassert.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gassert.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gcfmt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gcfmt.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gdim.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gdim.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gdist.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gdist.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gfexists.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gfexists.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gfloat.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gfloat.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/ggauss.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/ggauss.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/ggen.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/ggen.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/ggen_delta.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/ggen_delta.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/ghist.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/ghist.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gindices_array.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gindices_array.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gisunix.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gisunix.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gjoin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gjoin.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gkey.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gkey.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gloggen.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gloggen.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gminmax.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gminmax.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gn.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gn.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gn2base.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gn2base.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gn2hex.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gn2hex.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gn2s.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gn2s.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gnan.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gnan.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gprint.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gprint.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gprint_error.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gprint_error.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gprint_mgr.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gprint_mgr.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gpro_par_key.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gpro_par_key.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gproduct.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gproduct.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gps.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gps.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/greadtexttable.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/greadtexttable.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/greformstruct.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/greformstruct.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/groutineexists.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/groutineexists.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gsearch.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gsearch.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gsize.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gsize.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gstru_flatten.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gstru_flatten.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gstru_insert.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gstru_insert.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gstru_sub.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gstru_sub.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gstru_tagnames.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gstru_tagnames.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/gtype.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/gtype.pro -------------------------------------------------------------------------------- /IDL/Glib/utils/usage.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/Glib/utils/usage.pro -------------------------------------------------------------------------------- /IDL/gcompile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/gcompile.pro -------------------------------------------------------------------------------- /IDL/qsfit/components/SH1995/ReadMe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/SH1995/ReadMe -------------------------------------------------------------------------------- /IDL/qsfit/components/SH1995/convert.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/SH1995/convert.pl -------------------------------------------------------------------------------- /IDL/qsfit/components/SH1995/r1b0005.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/SH1995/r1b0005.d -------------------------------------------------------------------------------- /IDL/qsfit/components/SH1995/r1b0010.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/SH1995/r1b0010.d -------------------------------------------------------------------------------- /IDL/qsfit/components/SH1995/r1b0030.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/SH1995/r1b0030.d -------------------------------------------------------------------------------- /IDL/qsfit/components/SH1995/r1b0050.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/SH1995/r1b0050.d -------------------------------------------------------------------------------- /IDL/qsfit/components/SH1995/r1b0075.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/SH1995/r1b0075.d -------------------------------------------------------------------------------- /IDL/qsfit/components/SH1995/r1b0100.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/SH1995/r1b0100.d -------------------------------------------------------------------------------- /IDL/qsfit/components/SH1995/r1b0125.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/SH1995/r1b0125.d -------------------------------------------------------------------------------- /IDL/qsfit/components/SH1995/r1b0150.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/SH1995/r1b0150.d -------------------------------------------------------------------------------- /IDL/qsfit/components/SH1995/r1b0200.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/SH1995/r1b0200.d -------------------------------------------------------------------------------- /IDL/qsfit/components/SH1995/r1b0300.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/SH1995/r1b0300.d -------------------------------------------------------------------------------- /IDL/qsfit/components/SH1995/read.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/SH1995/read.pro -------------------------------------------------------------------------------- /IDL/qsfit/components/VC2004/TabA1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/VC2004/TabA1 -------------------------------------------------------------------------------- /IDL/qsfit/components/VC2004/TabA2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/VC2004/TabA2 -------------------------------------------------------------------------------- /IDL/qsfit/components/VW2001/Fe2_UV191.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/VW2001/Fe2_UV191.asc -------------------------------------------------------------------------------- /IDL/qsfit/components/VW2001/Fe3UV34modelB2.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/VW2001/Fe3UV34modelB2.asc -------------------------------------------------------------------------------- /IDL/qsfit/components/VW2001/Fe3_UV47.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/VW2001/Fe3_UV47.asc -------------------------------------------------------------------------------- /IDL/qsfit/components/VW2001/Fe_UVtemplt_A.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/VW2001/Fe_UVtemplt_A.asc -------------------------------------------------------------------------------- /IDL/qsfit/components/VW2001/Fe_UVtemplt_B.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/VW2001/Fe_UVtemplt_B.asc -------------------------------------------------------------------------------- /IDL/qsfit/components/VW2001/MV_UVfe2.trz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/VW2001/MV_UVfe2.trz -------------------------------------------------------------------------------- /IDL/qsfit/components/VW2001/ReadMe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/VW2001/ReadMe -------------------------------------------------------------------------------- /IDL/qsfit/components/ggaltempl_mannucci01.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/ggaltempl_mannucci01.pro -------------------------------------------------------------------------------- /IDL/qsfit/components/ggaltempl_mannucci01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/ggaltempl_mannucci01.txt -------------------------------------------------------------------------------- /IDL/qsfit/components/ggaltempl_swire.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/ggaltempl_swire.pro -------------------------------------------------------------------------------- /IDL/qsfit/components/qsfit_comp_balmer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/qsfit_comp_balmer.pro -------------------------------------------------------------------------------- /IDL/qsfit/components/qsfit_comp_balmer_hol.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/qsfit_comp_balmer_hol.dat -------------------------------------------------------------------------------- /IDL/qsfit/components/qsfit_comp_balmerold.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/qsfit_comp_balmerold.pro -------------------------------------------------------------------------------- /IDL/qsfit/components/qsfit_comp_contabsorption.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/qsfit_comp_contabsorption.pro -------------------------------------------------------------------------------- /IDL/qsfit/components/qsfit_comp_emline.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/qsfit_comp_emline.pro -------------------------------------------------------------------------------- /IDL/qsfit/components/qsfit_comp_galaxytemplate.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/qsfit_comp_galaxytemplate.pro -------------------------------------------------------------------------------- /IDL/qsfit/components/qsfit_comp_ironoptical.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/qsfit_comp_ironoptical.dat -------------------------------------------------------------------------------- /IDL/qsfit/components/qsfit_comp_ironoptical.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/qsfit_comp_ironoptical.pro -------------------------------------------------------------------------------- /IDL/qsfit/components/qsfit_comp_ironuv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/qsfit_comp_ironuv.dat -------------------------------------------------------------------------------- /IDL/qsfit/components/qsfit_comp_ironuv.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/qsfit_comp_ironuv.pro -------------------------------------------------------------------------------- /IDL/qsfit/components/qsfit_comp_sbpowerlaw.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/qsfit_comp_sbpowerlaw.pro -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/Arp220_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/Arp220_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/BQSO1_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/BQSO1_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/Ell13_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/Ell13_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/Ell2_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/Ell2_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/Ell5_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/Ell5_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/I19254_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/I19254_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/I20551_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/I20551_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/I22491_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/I22491_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/M82_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/M82_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/Mrk231_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/Mrk231_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/N6090_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/N6090_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/N6240_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/N6240_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/QSO1_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/QSO1_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/QSO2_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/QSO2_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/Readme -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/S0_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/S0_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/Sa_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/Sa_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/Sb_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/Sb_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/Sc_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/Sc_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/Sd_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/Sd_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/Sdm_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/Sdm_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/Sey18_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/Sey18_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/Sey2_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/Sey2_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/Spi4_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/Spi4_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/TQSO1_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/TQSO1_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/Torus_template_norm.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/Torus_template_norm.sed -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/polletta.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/polletta.pdf -------------------------------------------------------------------------------- /IDL/qsfit/components/swire/swire_library.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/components/swire/swire_library.tar.gz -------------------------------------------------------------------------------- /IDL/qsfit/gcompile_qsfit.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/gcompile_qsfit.pro -------------------------------------------------------------------------------- /IDL/qsfit/lines.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/lines.list -------------------------------------------------------------------------------- /IDL/qsfit/qsfit.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/IDL/qsfit/qsfit.pro -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/README.md -------------------------------------------------------------------------------- /compile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/compile.pro -------------------------------------------------------------------------------- /data/photometry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/data/photometry.txt -------------------------------------------------------------------------------- /data/spec-0752-52251-0323.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcalderone/qsfit/HEAD/data/spec-0752-52251-0323.fits --------------------------------------------------------------------------------