<!-- 
RSS generated by JIRA (8.3.4#803005-sha1:1f96e09b3c60279a408a2ae47be3c745f571388b) at Sat Feb 10 15:58:03 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-786] DifferentialDetectorMap produces OutOfRangeError instead of NaN</title>
                <link>https://pfspipe.ipmu.jp/jira/browse/PIPE2D-786</link>
                <project id="10002" key="PIPE2D">DRP 2-D Pipeline</project>
                    <description>&lt;p&gt;&lt;a href=&quot;https://pfspipe.ipmu.jp/jira/secure/ViewProfile.jspa?name=rhl&quot; class=&quot;user-hover&quot; rel=&quot;rhl&quot;&gt;rhl&lt;/a&gt; reports:&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;
detMap = DetectorMap.readFits(&lt;span class=&quot;code-quote&quot;&gt;&quot;/projects/HSC/PFS/Subaru/CALIB-SuNSS/DETECTORMAP/pfsDetectorMap-046270-b1.fits&quot;&lt;/span&gt;)
detMap.findPoint(3, 683.138)
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;raises:&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;
OutOfRangeError: 
  File &lt;span class=&quot;code-quote&quot;&gt;&quot;src/GlobalDetectorModel.cc&quot;&lt;/span&gt;, line 209, in lsst::geom::Point2D pfs::drp::stella::GlobalDetectorModel::&lt;span class=&quot;code-keyword&quot;&gt;operator&lt;/span&gt;()(&lt;span class=&quot;code-keyword&quot;&gt;const&lt;/span&gt; Point2D&amp;amp;, std::size_t, bool) &lt;span class=&quot;code-keyword&quot;&gt;const&lt;/span&gt;
    xi,eta=(17.983522,2414.269953) fiberId,wavelength=((3, 683.138)) is out of range of Box2D(Point2D(11.3896, -2192.4), Extent2D(4079.86, 4384.8)) {0}
lsst::pex::exceptions::OutOfRangeError: &lt;span class=&quot;code-quote&quot;&gt;&apos;xi,eta=(17.983522,2414.269953) fiberId,wavelength=((3, 683.138)) is out of range of Box2D(Point2D(11.3896, -2192.4), Extent2D(4079.86, 4384.8))&apos;&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;The expected result is &lt;tt&gt;(NaN, NaN)&lt;/tt&gt;.&lt;/p&gt;</description>
                <environment></environment>
        <key id="15474">PIPE2D-786</key>
            <summary>DifferentialDetectorMap produces OutOfRangeError instead of NaN</summary>
                <type id="10001" iconUrl="https://pfspipe.ipmu.jp/jira/secure/viewavatar?size=xsmall&amp;avatarId=10515&amp;avatarType=issuetype">Story</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="price">price</reporter>
                        <labels>
                    </labels>
                <created>Wed, 17 Mar 2021 14:20:24 +0000</created>
                <updated>Wed, 17 Mar 2021 19:41:18 +0000</updated>
                            <resolved>Wed, 17 Mar 2021 19:41:18 +0000</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>2</watches>
                                                                <comments>
                            <comment id="18885" author="price" created="Wed, 17 Mar 2021 15:42:34 +0000"  >&lt;p&gt;After the fix:&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;
&amp;gt;&amp;gt;&amp;gt; from pfs.drp.stella &lt;span class=&quot;code-keyword&quot;&gt;import&lt;/span&gt; DetectorMap
&amp;gt;&amp;gt;&amp;gt; detMap = DetectorMap.readFits(&lt;span class=&quot;code-quote&quot;&gt;&quot;/projects/HSC/PFS/Subaru/CALIB-SuNSS/DETECTORMAP/pfsDetectorMap-046270-b1.fits&quot;&lt;/span&gt;)
&amp;gt;&amp;gt;&amp;gt; detMap.findPoint(3, 683.138)
Point2D(nan, nan)
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="18905" author="hassan" created="Wed, 17 Mar 2021 18:45:54 +0000"  >&lt;p&gt;Changes look fine. Exceptions should be logged however. Please see pull request comments for details.&lt;/p&gt;</comment>
                            <comment id="18910" author="price" created="Wed, 17 Mar 2021 19:41:18 +0000"  >&lt;p&gt;Added a way to allow exceptions to propagate, but that is off by default.&lt;/p&gt;

&lt;p&gt;Merged to master.&lt;/p&gt;</comment>
                    </comments>
                    <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|zzs47y:zzzzzzzw</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="102">2DDRP-2021 A3</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                    </customfields>
    </item>
</channel>
</rss>