aboutsummaryrefslogtreecommitdiffstats
path: root/doc/create-image-expcorr.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/create-image-expcorr.md')
-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
+ ```