Show
added a comment - Nate Lust , would you please have a look at this simple patch?
price@price-laptop:~/LSST/obs/subaru (tickets/DM-7045=) $ git sub-patch
commit 2e4c58a58063033302f51ee2b60ce6724257fe85
Author: Paul Price <price@astro.princeton.edu>
Date: Wed May 18 08:57:29 2016 -0400
config: support HSC-I2 filter
diff --git a/config/hsc/filterMap.py b/config/hsc/filterMap.py
index 89f4b09..ed7a8b4 100644
--- a/config/hsc/filterMap.py
+++ b/config/hsc/filterMap.py
@@ -1,2 +1,3 @@
-for source, target in [("N921", 'z'), ("N816", 'i'), ("N515", 'g'), ("N387", 'g'), ("N1010", 'z')]:
+for source, target in [("N921", 'z'), ("N816", 'i'), ("N515", 'g'), ("N387", 'g'), ("N1010", 'z')
+ ("i2", 'i'),]:
config.filterMap[source] = target
diff --git a/config/hsc/mergeCoaddDetections.py b/config/hsc/mergeCoaddDetections.py
index dc04d73..36d9eb7 100644
--- a/config/hsc/mergeCoaddDetections.py
+++ b/config/hsc/mergeCoaddDetections.py
@@ -1,2 +1,2 @@
-root.priorityList = ["HSC-I", "HSC-R", "HSC-Z", "HSC-Y", "HSC-G", "NB0921", "NB0816", "NB1010", "NB0387", "NB0515",]
+root.priorityList = ["HSC-I2", "HSC-I", "HSC-R", "HSC-Z", "HSC-Y", "HSC-G", "NB0921", "NB0816", "NB1010", "NB0387", "NB0515",]
diff --git a/config/hsc/mergeCoaddMeasurements.py b/config/hsc/mergeCoaddMeasurements.py
index dc04d73..36d9eb7 100644
--- a/config/hsc/mergeCoaddMeasurements.py
+++ b/config/hsc/mergeCoaddMeasurements.py
@@ -1,2 +1,2 @@
-root.priorityList = ["HSC-I", "HSC-R", "HSC-Z", "HSC-Y", "HSC-G", "NB0921", "NB0816", "NB1010", "NB0387", "NB0515",]
+root.priorityList = ["HSC-I2", "HSC-I", "HSC-R", "HSC-Z", "HSC-Y", "HSC-G", "NB0921", "NB0816", "NB1010", "NB0387", "NB0515",]
Should be a simple cherry-pick.