aboutsummaryrefslogtreecommitdiffstats
path: root/astro/spectrum/sfr_chandra.pl
blob: f7d86c7bf88b8dee5e46b0e3405cf637b4c962fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
#!/usr/bin/env perl
#
# Copyright (c) 2015 Weitian LI <liweitianux@gmail.com>
# Copyright (c) 2007 Junhua GU <tompkins@sjtu.edu.cn>
#
# MIT License
#
# Performs automatically spectral fitting with XSPEC 12.
# For Chandra data only.
#
# Reference:
# [1] Running Multiple Copies of a Tool - CIAO
#     http://cxc.harvard.edu/ciao/ahelp/parameter.html#Running_Multiple_Copies_of_a_Tool
#

use strict;
use warnings;
use File::Basename;

my $version = "2015/03/04";
#
# ChangeLogs:
# 2015/03/04: Weitian LI
#   Completely rewrite of this script:
#   * add use strict, warnings, many fixes to the syntax
#   * add sub 'usage'
#   * rewrite sub 'update_backscale' -> 'rescale'
#   * update sub 'extract_spec' -> 'extract_spectrum'
#   * remove sub 'extract_back'
#   * replace 'grppha' with 'dmgroup'
#   * add sub 'determine_bkg' to determine the type of background
#   * fix the problem of when background set to 'none'
#   * copy CIAO tools' parameter files to local, avoiding conflicts when
#     running multiple instances of a CIAO tool
#   * allow comments in fit config file (starting with '//')
#   * update sub 'parse_result' to accept the parameter list and hash,
#     for better/simple parse process
#   * update example fit config file
#   * update generation of xspec fit script
#   * update config file syntax: merged '#PARA' and '#ERROR'
#   * use backtics to get the output of command within perl
#   * !! INCOMPATIBLE !! improve/change output format (columns adjustments)
#
# 2015/02/05: Weitian LI
#   * fix the wrong use of chomp.
#
# 2015/01/27: Weitian LI
#   * check 'cnt_spec' value before adjust the backscale
#
# 2015/01/21:
#   * add 'query yes' to temp_fit_script
#

## usage {{{
sub usage {
    my $prog = basename($0);
    my $text = qq(SFR - Spectral Fitting Robot
Usage:
    $prog <region_list> <evt> <bkgd> <output> <rmf> <arf> <fit_config>

Version: $version
);
    print $text;
}
## usage }}}

# Example fit config {{{
#----------------------------------------------------------------
#    abund grsa
#    weight gehrels
#
#    model wabs*apec & <nh> & 1.0 & 0.5 & <redshift> & 1.0 &
#
#    freeze 1
#    thaw 3
#
#    ignore **:0.0-0.7,7.0-**
#
#    fit
#    fit
#    fit
#
#    // Do not adjust BACKSCAL of background spectrum
#    #NORESCALE
#
#    #PARA kT    2
#
#    // Also calculate the errors of kT with XSPEC error command
#    #PARA kT    2 ERROR 1.0
#    #PARA Abund 3
#    #STAT
#    #FLUX 0.7 7.0
#
#    // Specify the parameters for dmgroup
#    #DMGROUP NUM_CTS 20
#    #DMGROUP BIN     1:128:2,129:256:4,257:512:8,513:1024:16
#----------------------------------------------------------------
# example config }}}

## variables {{{
# Background types
use constant {
    NO_BKG   => 0,  # do not use a background
    BLANKSKY => 1,  # blanksky fits file
    STOW_BKG => 2,  # stowed background
    LBKG_REG => 3,  # region file of a local background
    BKG_SPEC => 4,  # background spectrum file
};

# Threshold value for the 'reduced chi-squared'
my $rechisq_threshold = 1.4;
# Number of bad fitting (If fitted rechisq > $rechisq_threshold)
my $bad_fit_num = 0;

# Whether to rescale the background (default yes)
my $rescale = 1;

# Energy range selected to adjust the BACKSCAL of the background spectra.
# PI = [ energy(eV) / 14.6 eV + 1 ]
# Chandra particle background energy range:
# 9.5-12.0 keV (channel: 651-822)
my $pb_chn_lo = 651;
my $pb_chn_hi = 822;

# Source spectrum particle background counts ($cnt_spec,
# within channel back_lo -> back_hi) may be too small, even ZERO,
# thus cause error of zero division.
# If '$cnt_spec' too small (say 20), then skip adjusting the BACKSCAL.
my $pb_cnt_threshold = 20;

# 'dmgroup' parameters
my $grouptype = "NUM_CTS";
#my $grouptype="BIN"
my $grouptypeval = "20";
my $binspec = "1:128:2,129:256:4,257:512:8,513:1024:16";
## variables }}}

# NOTE: @ARGV does NOT include $0, the name of the program.
#my $argc = @ARGV;
my $argc = $#ARGV + 1;
#print "argc: $argc\n";
if ($argc != 7) {
    usage();
    exit 1;
}

## Setup local PFILES environment {{{
# Allow running multiple copies of a CIAO tool.
# Reference: http://cxc.harvard.edu/ciao/ahelp/parameter.html#Running_Multiple_Copies_of_a_Tool
#
# Make a local copy of necessary parameter files.
print "Setup local minimal environment for CIAO to avoid pfile conflicts.\n";
print "Copy necessary parameter files ...\n";
my @ciao_tools = ("dmstat", "dmkeypar", "dmhedit", "dmextract", "dmgroup");
foreach (@ciao_tools) {
    my $tool = $_;
    my $tool_par = `paccess $tool`;
    chomp($tool_par);
    #print "${tool}.par: $tool_par.\n";
    system("punlearn $tool && cp -Lv $tool_par .");
}

# Set environment variable PFILES
$ENV{PFILES} = "./:$ENV{PFILES}";
#system("echo PFILES: \$PFILES");
## PFILES }}}

## process arguments {{{
# File contains the list of fitting regions
my $region_list_fn = $ARGV[0];
# Event file (clean)
my $evt2_fn = $ARGV[1];
# Background file (blanksky.fits / bkg.pi)
my $bkg_fn = $ARGV[2];
# Output file to save fitting results
my $output_fn = $ARGV[3];
my $rmf_fn = $ARGV[4];
my $arf_fn = $ARGV[5];
# Fit config file for this tool
my $config_fn = $ARGV[6];

print "====================================================\n";
print "region_list: $region_list_fn\n";
print "evt2:        $evt2_fn\n";
print "bkg:         $bkg_fn \n";
print "output:      $output_fn\n";
print "rmf:         $rmf_fn\n";
print "arf:         $arf_fn\n";
print "config:      $config_fn\n";

# Parse evt, back, rmf, arf ... {{{
my @evt_list = split(/[,\ ]+/, $evt2_fn);
my $evt_num  = @evt_list;
my @bkg_list = split(/[,\ ]+/, $bkg_fn);
my $bkg_num  = @bkg_list;
my @rmf_list = split(/[,\ ]+/, $rmf_fn);
my $rmf_num  = @rmf_list;
my @arf_list = split(/[,\ ]+/, $arf_fn);
my $arf_num  = @arf_list;

print "====================================================\n";
print "evt_num: $evt_num, bkg_num: $bkg_num, rmf_num: $rmf_num, arf_num: $arf_num\n";
if (! (($evt_num == $bkg_num) && ($bkg_num == $rmf_num) && ($rmf_num == $arf_num))) {
    print "ERROR: number of evt, bkg, rmf or arf NOT match!\n";
    exit 12;
}

foreach my $i (0 .. $#evt_list) {
    printf "Data group %d: ", ($i+1);
    printf "%s, %s, %s, %s\n", $evt_list[$i], $bkg_list[$i], $rmf_list[$i], $arf_list[$i];
}
print "====================================================\n";
# parse evt, bkg ... }}}

# Backup the output file if it exists
if ( -e $output_fn ) {
    print "WARNING: Output file '$output_fn' already exists!\n";
    system("mv -fv $output_fn ${output_fn}_bak");
}

# Determine the type of each background file
my @bkg_type = ();
foreach my $bkgd (@bkg_list) {
    my $bkgd_type = NO_BKG;
    if ($bkgd =~ /^(no|null|none)$/i) {
        print "WARNING: does not use background!\n";
        $bkgd_type = NO_BKG;
    } elsif (! -e $bkgd) {
        print "ERROR: bkg file '$bkgd' does not exists!\n";
        exit 11;
    } else {
        $bkgd_type = determine_bkg($bkgd);
    }
    push(@bkg_type, $bkgd_type);
}
## arguments }}}

## Fitting related variables {{{
my $fit_reg_fn    = "_fit.reg";
my $fit_script_fn = "_fit.tcl";
my $fit_result_fn = "_fit.txt";
if (-e $fit_result_fn) {
    unlink($fit_result_fn);
}

my @fit_spec_list = ();
my @fit_grp_spec_list = ();
my @fit_bkg_spec_list = ();
foreach my $i (0 .. $#evt_list) {
    my $ii = $i + 1;
    push (@fit_spec_list,     "_fit_${ii}.pi");
    push (@fit_grp_spec_list, "_fit_${ii}_grp.pi");
    push (@fit_bkg_spec_list, "_fit_${ii}_bkg.pi");
}
## varaibles }}}

## Subroutines {{{
# Determine the type of the given background file {{{
# Usage: determine_bkg($bkg_filename)
sub determine_bkg {
    my $argc = @_;
    if ($argc != 1) {
        print "ERROR: sub determine_bkg() requires 1 argument!\n";
        exit 21;
    }
    my $bkgd = $_[0];
    my $filetype = `file -bL $bkgd`;
    if ($filetype =~ /^ASCII text/) {
        print "determine_bkg: '$bkgd' is ASCII text\n";
        return LBKG_REG;
    } elsif ($filetype =~ /^FITS/) {
        print "determine_bkg: '$bkgd' is FITS\n";
        my $hduclas1 = `punlearn dmkeypar && dmkeypar $bkgd HDUCLAS1 echo=yes`;
        chomp($hduclas1);
        if ($hduclas1 =~ /^EVENTS$/) {
            print "determine_bkg: '$bkgd' is FITS of EVENTS\n";
            my $bkg_obj = `punlearn dmkeypar && dmkeypar $bkgd OBJECT echo=yes`;
            chomp($bkg_obj);
            if ($bkg_obj =~ /^BACKGROUND DATASET$/) {
                print "determine_bkg: '$bkgd' is background dataset\n";
                return BLANKSKY;
            } elsif ($bkg_obj =~ /^ACIS STOWED$/) {
                print "determine_bkg: '$bkgd' is stowed background\n";
                return STOW_BKG;
            } else {
                print "ERROR: determine_bkg: unknown EVENTS type\n";
                exit 22;
            }
        } elsif ($hduclas1 =~ /^SPECTRUM$/) {
            print "determine_bkg: '$bkgd' is FITS of SPECTRUM\n";
            return BKG_SPEC;
        } else {
            print "ERROR: determine_bkg: unknown FITS type\n";
            exit 23;
        }
    } else {
        print "ERROR: determine_bkg: unknown file type: $filetype\n";
        exit 24;
    }
}
# determine_bkg }}}

# Adjust BACKSCALE of background spectrum to match PB fluxes {{{
# Usage: bkg_rescale($src_spec, $bkg_spec)
sub bkg_rescale {
    my $argc = @_;
    if ($argc != 2) {
        print "ERROR: sub bkg_rescale() requires 2 arguments!\n";
        exit 22;
    }
    my $src_spec = $_[0];
    my $bkg_spec = $_[1];

    # PB counts of source & background spectrum
    my $src_pb_cnt = `punlearn dmstat && dmstat infile="$src_spec\[channel=$pb_chn_lo:$pb_chn_hi\]\[cols COUNTS\]" >/dev/null 2>&1 && pget dmstat out_sum`;
    chomp($src_pb_cnt);
    # PB counts of background spectrum
    my $bkg_pb_cnt = `punlearn dmstat && dmstat infile="$bkg_spec\[channel=$pb_chn_lo:$pb_chn_hi\]\[cols COUNTS\]" >/dev/null 2>&1 && pget dmstat out_sum`;
    chomp($bkg_pb_cnt);
    #print "src_pb_cnt: $src_pb_cnt\n";
    #print "bkg_pb_cnt: $bkg_pb_cnt\n";
    #exit 233;

    # BACKSCAL & EXPOSURE of source spectrum
    my $src_backscal = `punlearn dmkeypar && dmkeypar $src_spec BACKSCAL echo=yes`;
    chomp($src_backscal);
    my $src_exposure = `punlearn dmkeypar && dmkeypar $src_spec EXPOSURE echo=yes`;
    chomp($src_exposure);
    # BACKSCAL & EXPOSURE of background spectrum
    my $bkg_backscal = `punlearn dmkeypar && dmkeypar $bkg_spec BACKSCAL echo=yes`;
    chomp($bkg_backscal);
    my $bkg_exposure = `punlearn dmkeypar && dmkeypar $bkg_spec EXPOSURE echo=yes`;
    chomp($bkg_exposure);
    #print "src_backscal: $src_backscal\n";
    #print "src_exposure: $src_exposure\n";
    #print "bkg_backscal: $bkg_backscal\n";
    #print "bkg_exposure: $bkg_exposure\n";

    if ($src_pb_cnt <= $pb_cnt_threshold) {
        # Source spectrum particle background counts too small.
        print "WARNING: too small counts of source spectrum within 9.5-12 keV: $src_pb_cnt!\n";
        print "Skipped BACKSCAL adjustment of background spectrum!\n";
    } else {
        # Adjust BACKSCALE of background spectrum to match PB flux:
        # src_pb_cnt / src_exposure / src_backscal = bkg_pb_cnt / bkg_exposure / bkg_backscal
        my $bkg_backscal_new = $src_backscal * $src_exposure * $bkg_pb_cnt
                / ($src_pb_cnt * $bkg_exposure);
        my $cmd_str = "punlearn dmhedit && "
            . "dmhedit infile=\"$bkg_spec\" filelist=none operation=add "
            . "key=BACKSCAL value=$bkg_backscal_new "
            . "comment='old_value: $bkg_backscal'";
        system($cmd_str);
        print "Updated BACKSCAL: $bkg_backscal -> $bkg_backscal_new\n";
    }
}
# rescale }}}

# Extract spectrum from fits {{{
# Usage: extract_spectrum($input_fits, $output_spec, $region_file)
sub extract_spectrum {
    my $argc = @_;
    if ($argc != 3) {
        print "ERROR: sub extract_spec() requires 3 arguments!\n";
        exit 31;
    }
    my $infile  = $_[0];
    my $outfile = $_[1];
    my $regfile = $_[2];
    my $cmd_str = "punlearn dmextract && "
        . "dmextract infile=\"$infile\[sky=region\($regfile\)\]\[bin pi\]\" "
        . "outfile=\"$outfile\" wmap=\"\[bin det=8\]\" clobber=yes";
    system($cmd_str);
}
# extract spectrum }}}

# group spectrum with 'dmgroup' {{{
# Usage: group_spectrum($in_spec, $grp_spec, $grouptype, $grouptypeval, $binspec)
sub group_spectrum {
    my $argc = @_;
    if ($argc != 5) {
        print "ERROR: sub group_spec() requires 5 arguments!\n";
        exit 41;
    }
    my $infile  = $_[0];
    my $outfile = $_[1];
    my $grp_type = $_[2];
    my $grp_type_val = $_[3];
    my $bin_spec = $_[4];

    my $cmd_str = "punlearn dmgroup && "
        . "dmgroup infile=\"$infile\" outfile=\"$outfile\" "
        . "grouptype=\"$grp_type\" grouptypeval=$grp_type_val "
        . "binspec=\"$bin_spec\" xcolumn=CHANNEL ycolumn=COUNTS clobber=yes";
    #print $cmd_str;
    system($cmd_str);
}
# group spectrum }}}

# Parse the fitted result line {{{
# Usage: parse_result($result_line, @para_name_list, %para_num)
sub parse_result ($\@\%) {
    my $argc = @_;
    if ($argc != 3) {
        print "ERROR: sub parse_result() requires 3 argument!\n";
        exit 51;
    }
    my $line=$_[0];
    my @para_name_list = @{$_[1]};
    my %para_num= %{$_[2]};

    my @parsed_results = ();

    foreach my $para_name (@para_name_list) {
        # Number of values for this parameter
        my $num = $para_num{$para_name};
        if ($line =~ /^$para_name:/) {
            my @items = split(/\s+/, $line);
            foreach my $i (0 .. $num) {
                # items[0] is the '$para_name:'
                push(@parsed_results, $items[$i]);
            }
            if ($para_name =~ /red.*chi.*sq/i) {
                my $current_rechisq = $items[1];
                if ($current_rechisq > $rechisq_threshold) {
                    print "WARNING: bad quality of spectral fittings!\n";
                    $bad_fit_num ++;
                }
            }
        }
    }

    return @parsed_results;
}
# parse result }}}
## subroutines }}}

## Generate the fit script for XSPEC {{{
if (! -e $config_fn) {
    print "ERROR: config file '$config_fn' does not exist!\n";
    exit 14;
}
open(my $FIT_SCRIPT, ">", $fit_script_fn)
    or die "ERROR: Could not open file '$fit_script_fn', $!";

# Part of load data to XSPEC
foreach my $i (0 .. $#evt_list) {
    my $ii = $i + 1;
    print $FIT_SCRIPT "data ${ii}:${ii} $fit_grp_spec_list[$i]\n";
    print $FIT_SCRIPT "response 1:${ii} $rmf_list[$i]\n";
    print $FIT_SCRIPT "arf 1:${ii} $arf_list[$i]\n";
    print $FIT_SCRIPT "backgrnd ${ii} $fit_bkg_spec_list[$i]\n";
}

# Automatically answer XSPEC query with 'yes'
print $FIT_SCRIPT "query yes\n";
print $FIT_SCRIPT "set ff \[ open $fit_result_fn w \]\n";

open(my $CONFIG, "<", $config_fn)
    or die "ERROR: Counld not open file '$config_fn', $!";
my @config_lines = <$CONFIG>;
close($CONFIG);

# Record the name of specified parameters in the config file.
my @para_name_list = ();
# Record the number of output values of above parameters. (use hash)
my %para_num;

# Parse the fitting config file {{{
foreach my $line (@config_lines) {
    chomp($line);
    if ($line =~ /^\s*$/) {
        # Blank line
        print "Skipped blank line.\n";
        next;
    } elsif ($line =~ /^\/\//) {
        # Comment line
        print "Skipped comment line.\n";
        next;
    } elsif ($line =~ /^\#PARA/) {
        # Define fitting parameter, together with settings error calculation.
        # Config: '#PARA para_name para_index [ ERROR conf_level ]'
        # Output:
        #     'para_name: value sigma'
        #     'para_name_err: error_lower error_upper'
        my @para = split(/\s+/, $line);
        my $para_name = $para[1];
        my $para_idx = $para[2];
        push(@para_name_list, $para_name);
        $para_num{$para_name} = 2;
        print $FIT_SCRIPT "tclout para $para_idx\n";
        print $FIT_SCRIPT "scan \$xspec_tclout \"%f\" value\n";
        print $FIT_SCRIPT "tclout sigma $para_idx\n";
        print $FIT_SCRIPT "scan \$xspec_tclout \"%f\" sigma\n";
        print $FIT_SCRIPT "puts \$ff \"$para_name: \$value \$sigma\"\n";
        # Check whether to calculate the errors
        if ($line =~ /ERR(OR|)\s+\d*\.\d*\s*$/) {
            # Calculate errors with XSPEC 'error' command
            my $conf_level = $para[4];
            my $para_err_name = "${para_name}_err";
            push(@para_name_list, $para_err_name);
            $para_num{$para_err_name} = 2;
            print $FIT_SCRIPT "fit\n";
            print $FIT_SCRIPT "error $conf_level $para_idx\n";
            print $FIT_SCRIPT "tclout error $para_idx\n";
            print $FIT_SCRIPT "scan \$xspec_tclout \"%f %f\" err_lower err_upper\n";
            print $FIT_SCRIPT "puts \$ff \"${para_name}_err: \$err_lower \$err_upper\"\n";
        }
    } elsif ($line =~ /^\#STAT/) {
        # Whether output the statistic information
        # Config: '#STAT'
        # Output:
        #     'stat_value statistic'
        #     'dof_value dof'
        #     'rechisq_value Reduced_chisq'
        my $stat_name = "stat";
        push(@para_name_list, $stat_name);
        $para_num{$stat_name} = 1;
        my $dof_name  = "dof";
        push(@para_name_list, $dof_name);
        $para_num{$dof_name} = 1;
        # Reduced chi-squared
        my $rechisq_name = "reduced_chisq";
        push(@para_name_list, $rechisq_name);
        $para_num{$rechisq_name} = 1;
        print $FIT_SCRIPT "tclout $stat_name\n";
        print $FIT_SCRIPT "scan \$xspec_tclout \"%f\" stat_val\n";
        print $FIT_SCRIPT "puts \$ff \"$stat_name: \$stat_val\"\n";
        print $FIT_SCRIPT "tclout $dof_name\n";
        print $FIT_SCRIPT "scan \$xspec_tclout \"%d\" dof_val\n";
        print $FIT_SCRIPT "puts \$ff \"$dof_name: \$dof_val\"\n";
        print $FIT_SCRIPT "set rechisq_cmd \{ format \"%.5f\" \[ expr \{ \$stat_val / \$dof_val \} \] \}\n";
        print $FIT_SCRIPT "set rechisq \[ eval \$rechisq_cmd \]\n";
        print $FIT_SCRIPT "puts \$ff \"$rechisq_name: \$rechisq\"\n";
    } elsif ($line =~ /^\#FLUX/) {
        # Whether output flux information
        # Config: '#FLUX start_keV end_keV'
        my @para = split(/\s+/, $line);
        my $energy_low = $para[1];
        my $energy_high = $para[2];
        my $para_name = "flux";
        push(@para_name_list, $para_name);
        $para_num{$para_name} = 1;
        print $FIT_SCRIPT "flux $energy_low $energy_high\n";
        print $FIT_SCRIPT "tclout $para_name\n";
        print $FIT_SCRIPT "scan \$xspec_tclout \"%f\" flux_val\n";
        print $FIT_SCRIPT "puts \$ff \"$para_name: \$flux_val\"\n";
    } elsif ($line =~ /^\#DMGROUP/) {
        # dmgroup parameters
        my @para = split(/\s+/, $line);
        $grouptype = $para[1];
        if ($grouptype eq "NUM_CTS") {
            $grouptypeval = $para[2];
            print "dmgroup: $grouptype, $grouptypeval\n";
        } elsif ($grouptype eq "BIN") {
            $binspec = $para[2];
            print "dmgroup: $grouptype, $binspec\n";
        } else {
            print "ERROR: unknown grouptype '$grouptype'!\n";
            print "Only 'NUM_CTS' and 'BIN' supported for dmgroup.\n";
            exit 16;
        }
    } elsif ($line =~ /^\#NORESCALE/) {
        $rescale = 0;
    } elsif ($line =~ /^\#/) {
        # Other unsupported lines starting with '#'
        print "WARNING: unsupported config line:\n    '$line'\n";
        next;
    } else {
        # XSPEC commands/lines
        print $FIT_SCRIPT "$line\n";
    }
}
# Parse config file }}}

print $FIT_SCRIPT "close \$ff\n";
print $FIT_SCRIPT "tclexit\n";
close($FIT_SCRIPT);
#exit 233;
## Generate XSPEC script }}}

## Perform spectral fittings {{{
open(my $REGION_LIST, "<", $region_list_fn)
    or die "ERROR: Could not open file '$region_list_fn', $!";
my @region_lines = <$REGION_LIST>;
close($REGION_LIST);

open(my $OUTFILE, ">", $output_fn)
    or die "ERROR: Could not open file '$output_fn', $!";

my $reg_total = @region_lines;
my $n = 0;

# Loop over the region list to perform spectral fitting for each region
foreach my $line (@region_lines) {
    chomp($line);
    $n++;
    print "### $n of $reg_total ###\n";

    # Skip null/none regions
    if ($line =~ /^\#(null|none)/i) {
        print $OUTFILE "$n ";
        foreach my $para_name (@para_name_list) {
            # Number of values for this parameter
            my $num = $para_num{$para_name};
            print $OUTFILE "${para_name}: ";
            foreach my $i (1 .. $num) {
                print $OUTFILE "-1 ";
            }
        }
        print $OUTFILE "\n";
        print "Skipped a null/none region.\n";
        next;
    }

    # Save the current region to a temporary region file
    unlink($fit_reg_fn);
    open(my $FIT_REG, ">", $fit_reg_fn)
        or die "ERROR: Could not open file '$fit_reg_fn', $!";
    my @cur_regs = split(/\s+/, $line);
    foreach my $reg (@cur_regs) {
        print $FIT_REG "$reg\n"
    }
    close($FIT_REG);

    # Prepare source and background spectra {{{
    print "Prepare source and background  spectra \.\.\.\n";
    foreach my $i (0 .. $#evt_list) {
        # Prepare source spectrum
        extract_spectrum($evt_list[$i], $fit_spec_list[$i], $fit_reg_fn);
        group_spectrum($fit_spec_list[$i], $fit_grp_spec_list[$i],
            $grouptype, $grouptypeval, $binspec);
        # Prepare background spectrum
        if ($bkg_type[$i] == NO_BKG) {
            # Dose not use a background
            $fit_bkg_spec_list[$i] = "none";
        } elsif (($bkg_type[$i] == BLANKSKY) || ($bkg_type[$i] == STOW_BKG)) {
            extract_spectrum($bkg_list[$i], $fit_bkg_spec_list[$i], $fit_reg_fn);
            if ($rescale) {
                bkg_rescale($fit_spec_list[$i], $fit_bkg_spec_list[$i]);
            }
        } elsif ($bkg_type[$i] == LBKG_REG) {
            extract_spectrum($evt_list[$i], $fit_bkg_spec_list[$i], $bkg_list[$i]);
            if ($rescale) {
                bkg_rescale($fit_spec_list[$i], $fit_bkg_spec_list[$i]);
            }
        } elsif ($bkg_type[$i] == BKG_SPEC) {
            # Directly use given background spectrum
            system("cp -v $bkg_list[$i] $fit_bkg_spec_list[$i]");
            if ($rescale) {
                bkg_rescale($fit_spec_list[$i], $fit_bkg_spec_list[$i]);
            }
        } else {
            print "ERROR: unsupported background type!\n";
            exit 15;
        }
    }
    # prepare spectra }}}

    # Perform the spectral fitting with XSPEC
    print "Fitting \.\.\.\n";
    unlink($fit_result_fn);
    system("xspec - $fit_script_fn >/dev/null") == 0
        or die "system: xspec failed: $?";

    # Parse fitted results and output
    open(my $FIT_RESULT, "<", $fit_result_fn)
        or die "ERROR: Could not open file '$fit_result_fn', $!";
    my @fitted_results = <$FIT_RESULT>;
    close($FIT_RESULT);
    # Array to store parsed results of current fit
    my @current_results = ($n);
    foreach my $line (@fitted_results) {
        chomp($line);
        push(@current_results, parse_result($line, @para_name_list, %para_num));
    }
    print join(" ", @current_results) . "\n";
    print $OUTFILE join(" ", @current_results) . "\n";
} # end of fitting loop

close($OUTFILE);
## spectra fittings }}}

if ($bad_fit_num > 0) {
    my $bad_fit_percent = $bad_fit_num / $reg_total;
    print "\n************************************************\n";
    print "WARNING: Reduced chi-squared of $bad_fit_num ($bad_fit_percent) regions > $rechisq_threshold!!\n";
}

exit 0;