aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron LI <aly@aaronly.me>2018-09-11 17:45:39 +0800
committerAaron LI <aly@aaronly.me>2018-09-11 17:45:39 +0800
commitae43b0c726e399d6f6426e8a14e51d00cbfcf95e (patch)
tree4ceb919b0ac902563c15c4c30c9877f03df1d81a
parent595fe6424d79618b73716c2661b80ec890060503 (diff)
downloadchandra-acis-analysis-ae43b0c726e399d6f6426e8a14e51d00cbfcf95e.tar.bz2
Add doc/create-image-expcorr; still a WIP
-rw-r--r--doc/create-image-expcorr.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/create-image-expcorr.md b/doc/create-image-expcorr.md
new file mode 100644
index 0000000..626a364
--- /dev/null
+++ b/doc/create-image-expcorr.md
@@ -0,0 +1,27 @@
+Create Exposure-Corrected Images
+================================
+
+1. Data reduction and create a basic manifest file (will be used by
+ subsequent tools):
+
+ ```sh
+ $ cd <obsid>
+ $ repro_acis.py
+ ```
+
+2. Clean the level=2 event file by removing point sources and flares:
+
+ ```sh
+ $ mkdir evt && cd evt
+ $ ln -s ../repro/*_repro_evt2.fits .
+ $ clean_evt2.py
+ $ cd ..
+ ```
+
+3. Get image grids (``xygrid`` output from ``get_fov_limits``):
+
+ ```sh
+ $ mkdir img && cd img
+ $ get_fov_limits "../repro/*_repro_fov1.fits[ccd_id=0:3]" # ACIS-I
+ $ get_fov_limits "../repro/*_repro_fov1.fits[ccd_id=7]" # ACIS-S
+ ```