diff options
author | Aaron LI <aaronly.me@gmail.com> | 2016-05-27 22:47:24 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@gmail.com> | 2016-05-27 22:47:24 +0800 |
commit | ffd178e0bd72562a3c2cff9747b6e656edc881dc (patch) | |
tree | 8800b7b5b2e8bc3df1a6760df5cd54eaaa686702 /mass_profile/fit_sbp.sh | |
parent | 5c35fad9240fb42c1371c721e0b2af7379bd9ea0 (diff) | |
download | chandra-acis-analysis-ffd178e0bd72562a3c2cff9747b6e656edc881dc.tar.bz2 |
Add mass_profile tools
* These tools are mainly use to calculate the total gravitational mass
profile, as well as the intermediate products (e.g., surface
brightness profile fitting, gas density profile, NFW fitting, etc.)
* There are additional tools for calculating the luminosity and flux.
* These tools mainly developed by Junhua GU, and contributed by
Weitian (Aaron) LI, and Zhenghao ZHU.
Diffstat (limited to 'mass_profile/fit_sbp.sh')
-rwxr-xr-x | mass_profile/fit_sbp.sh | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/mass_profile/fit_sbp.sh b/mass_profile/fit_sbp.sh new file mode 100755 index 0000000..76aaaaf --- /dev/null +++ b/mass_profile/fit_sbp.sh @@ -0,0 +1,43 @@ +#!/bin/sh +# + +if [ $# -ne 1 ]; then + printf "usage: $0 <mass_conf>\n" + exit 1 +fi +cfg_file=$1 +if [ "$0" = `basename $0` ]; then + script_path=`which $0` + base_path=`dirname ${script_path}` +else + base_path=`dirname $0` +fi + +sbp_cfg=`grep '^sbp_cfg' $cfg_file | awk '{ print $2 }'` +t_data_file=`grep '^t_data_file' $cfg_file | awk '{ print $2 }'` +t_param_file=`grep '^t_param_file' $cfg_file | awk '{ print $2 }'` +nh=`grep '^nh' $cfg_file | awk '{ print $2 }'` +abund=`grep '^abund' $cfg_file | awk '{ print $2 }'` +z=`grep '^z' $sbp_cfg | awk '{ print $2 }'` +cm_per_pixel=`${base_path}/calc_distance ${z} | grep 'cm_per_pixel' | awk '{ print $2 }'` +sed -i'' "s/^cm_per_pixel.*$/cm_per_pixel ${cm_per_pixel}/" ${sbp_cfg} +cfunc_file=`grep '^cfunc_file' $sbp_cfg | awk '{ print $2 }'` +T_file=`grep '^T_file' $sbp_cfg | awk '{ print $2 }'` + +if grep -q '^beta2' $sbp_cfg; then + MODEL="double-beta" + PROG=fit_dbeta_sbp +else + MODEL="single-beta" + PROG=fit_beta_sbp +fi + +$base_path/fit_wang2012_model $t_data_file $t_param_file $cm_per_pixel 2> /dev/null +cp wang2012_dump.qdp $T_file +if [ ! -f ${cfunc_file} ]; then + $base_path/coolfunc_calc2.sh $T_file $abund $nh $z $cfunc_file +fi +$base_path/$PROG $sbp_cfg +printf "## MODEL: ${MODEL}\n" +printf "## z: ${z}\n" + |