<!-- 
RSS generated by JIRA (8.3.4#803005-sha1:1f96e09b3c60279a408a2ae47be3c745f571388b) at Sat Feb 10 15:51:27 JST 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>PFS-JIRA</title>
    <link>https://pfspipe.ipmu.jp/jira</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>8.3.4</version>
        <build-number>803005</build-number>
        <build-date>13-09-2019</build-date>
    </build-info>


<item>
            <title>[PIPE2D-340] Provide method to adjust detector map for arc data</title>
                <link>https://pfspipe.ipmu.jp/jira/browse/PIPE2D-340</link>
                <project id="10002" key="PIPE2D">DRP 2-D Pipeline</project>
                    <description>&lt;p&gt;Provide a method to adjust a detector map based on small delta-x, delta-y and scale changes (small in the sense that delta-x and -y are of the order of a few pixels).&lt;/p&gt;

&lt;p&gt;This is useful as the slit is often adjusted when arc data are acquired by LAM, and so the detector map needs to be adjusted accordingly (compared with the summit default state) to obtain the correct wavelength solution.&lt;/p&gt;

&lt;p&gt;Unit tests asserting how the detector map should vary with x- y- and scale changes should be provided.&lt;/p&gt;

</description>
                <environment></environment>
        <key id="13319">PIPE2D-340</key>
            <summary>Provide method to adjust detector map for arc data</summary>
                <type id="3" iconUrl="https://pfspipe.ipmu.jp/jira/secure/viewavatar?size=xsmall&amp;avatarId=10518&amp;avatarType=issuetype">Task</type>
                                            <priority id="10000" iconUrl="https://pfspipe.ipmu.jp/jira/images/icons/priorities/medium.svg">Normal</priority>
                        <status id="10002" iconUrl="https://pfspipe.ipmu.jp/jira/images/icons/statuses/generic.png" description="The issue is resolved, reviewed, and merged">Done</status>
                    <statusCategory id="3" key="done" colorName="green"/>
                                    <resolution id="10000">Done</resolution>
                                        <assignee username="price">price</assignee>
                                    <reporter username="hassan">hassan</reporter>
                        <labels>
                    </labels>
                <created>Thu, 7 Feb 2019 16:09:49 +0000</created>
                <updated>Thu, 23 May 2019 19:22:55 +0000</updated>
                            <resolved>Thu, 7 Mar 2019 15:35:31 +0000</resolved>
                                                    <fixVersion>6.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>1</watches>
                                                                <comments>
                            <comment id="14919" author="hassan" created="Thu, 7 Feb 2019 16:14:29 +0000"  >&lt;p&gt;Rotation may also be required, but that would be the subject of a separate issue.&lt;/p&gt;</comment>
                            <comment id="15002" author="price" created="Wed, 20 Feb 2019 20:26:09 +0000"  >&lt;p&gt;&lt;a href=&quot;https://pfspipe.ipmu.jp/jira/secure/ViewProfile.jspa?name=hassan&quot; class=&quot;user-hover&quot; rel=&quot;hassan&quot;&gt;hassan&lt;/a&gt;, could you please check this is the functionality you requested?&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
price@MacBook:~/pfs/drp_stella (tickets/PIPE2D-340 %=) $ git sub
commit 7d6271f83f7168d0050e60a3e697da0a3f4ef99e
Author: Paul Price &amp;lt;price@astro.princeton.edu&amp;gt;
Date:   Tue Feb 19 15:26:06 2019 -0500

    DetectorMap: remove testing Ctor
    
    I made &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt; Ctor &lt;span class=&quot;code-keyword&quot;&gt;while&lt;/span&gt; trying to figure out problems with pybind;
    looks like I forgot to remove it when I was done.

 include/pfs/drp/stella/DetectorMap.h | 9 ---------
 1 file changed, 9 deletions(-)

commit b2306b211049175b44e4bc40ceaaac19a8ff3de6
Author: Paul Price &amp;lt;price@astro.princeton.edu&amp;gt;
Date:   Wed Feb 20 14:11:17 2019 -0500

    DetectorMap: convert DX,DY,DFOCUS to properties instead of &lt;span class=&quot;code-keyword&quot;&gt;enum&lt;/span&gt;
    
    Having them as an &lt;span class=&quot;code-keyword&quot;&gt;enum&lt;/span&gt; requires casting them every time we want to use
    them &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; indexing, which is their primary purpose. Instead, as
    &lt;span class=&quot;code-keyword&quot;&gt;static&lt;/span&gt; readonly properties, they are of the correct type &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; indexing.

 python/pfs/drp/stella/detectorMap.cc | 11 ++++++-----
 tests/test_DetectorMap.py            |  6 ++----
 2 files changed, 8 insertions(+), 9 deletions(-)

commit d136792e6f80ac17b04b3b14139bdc4ea3040286
Author: Paul Price &amp;lt;price@astro.princeton.edu&amp;gt;
Date:   Wed Feb 20 13:02:35 2019 -0500

    add test &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; DetectorMap slitOffsets

 tests/test_DetectorMap.py | 99 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 99 insertions(+)

commit 18d288ba0f91ad2e6997df63b9ce69df6429eebc
Author: Paul Price &amp;lt;price@astro.princeton.edu&amp;gt;
Date:   Wed Feb 20 15:05:37 2019 -0500

    add SlitOffsetsConfig
    
    This allows configuring slit offsets through a Config.

 python/pfs/drp/stella/detectorMapContinued.py | 69 ++++++++++++++++++++++++++-
 tests/test_DetectorMap.py                     | 54 +++++++++++++++++++++
 2 files changed, 122 insertions(+), 1 deletion(-)

commit 9a50145cce7b8281a5cd6bd02f962fcf5b806c0b (HEAD -&amp;gt; tickets/PIPE2D-340, origin/tickets/PIPE2D-340)
Author: Paul Price &amp;lt;price@astro.princeton.edu&amp;gt;
Date:   Wed Feb 20 15:22:01 2019 -0500

    constructFiberTrace: allow manual application of slitOffsets to detectorMap
    
    This allows the user to modify the slitOffsets of the detectorMap
    by specifying them in the config.

 python/pfs/drp/stella/constructFiberTraceTask.py | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="15062" author="price" created="Thu, 7 Mar 2019 15:35:31 +0000"  >&lt;p&gt;Merged to master.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10003">
                    <name>Relates</name>
                                            <outwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="13350">PIPE2D-358</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="13320">PIPE2D-341</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="13251">PIPE2D-319</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10500" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|02qpt6:3r</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10100" key="com.atlassian.jira.plugin.system.customfieldtypes:userpicker">
                        <customfieldname>Reviewers</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>hassan</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10005" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue id="43">2019 B</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10002" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>Story Points</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>5.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                        </customfields>
    </item>
</channel>
</rss>