<!-- 
RSS generated by JIRA (8.3.4#803005-sha1:1f96e09b3c60279a408a2ae47be3c745f571388b) at Sat Feb 10 15:50:42 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-297] Split ReferenceLine, Spectrum, SpectrumSet into their own files</title>
                <link>https://pfspipe.ipmu.jp/jira/browse/PIPE2D-297</link>
                <project id="10002" key="PIPE2D">DRP 2-D Pipeline</project>
                    <description>&lt;p&gt;The &lt;tt&gt;ReferenceLine&lt;/tt&gt;, &lt;tt&gt;Spectrum&lt;/tt&gt; and &lt;tt&gt;SpectrumSet&lt;/tt&gt; classes are defined in the same files (same C++ header, pybind wrapper, python extension). They should be split into files named after themselves.&lt;/p&gt;</description>
                <environment></environment>
        <key id="13007">PIPE2D-297</key>
            <summary>Split ReferenceLine, Spectrum, SpectrumSet into their own files</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 Oct 2018 18:32:50 +0000</created>
                <updated>Wed, 24 Oct 2018 19:49:34 +0000</updated>
                            <resolved>Wed, 24 Oct 2018 19:49:14 +0000</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>1</watches>
                                                                <comments>
                            <comment id="14223" author="price" created="Thu, 18 Oct 2018 15:06:41 +0000"  >&lt;p&gt;Not sure it&apos;s worth reviewing this in detail, as it&apos;s just reorganisation.&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@Pauls-MacBook-Pro:~/pfs/drp_stella (tickets/PIPE2D-297=) $ git sub
commit c2dabbf10ddd36708ad64a0592e86fc0fafce4ce
Author: Paul Price &amp;lt;price@astro.princeton.edu&amp;gt;
Date:   Wed Oct 17 17:09:18 2018 -0400

    pull ReferenceLine,Spectrum,SpectrumSet into their own files
    
    Until now, they&apos;ve been mixed up in the same file.
    Reorganising them into their own files, named after themselves, makes
    them easier to find.

 include/pfs/drp/stella/FiberTraces.h               |   2 +-
 include/pfs/drp/stella/ReferenceLine.h             |  48 ++++
 include/pfs/drp/stella/Spectra.h                   | 305 ---------------------
 include/pfs/drp/stella/Spectrum.h                  | 163 +++++++++++
 include/pfs/drp/stella/SpectrumSet.h               | 119 ++++++++
 python/pfs/drp/stella/ReferenceLine.cc             |  66 +++++
 python/pfs/drp/stella/SConscript                   |   4 +-
 python/pfs/drp/stella/{spectra.cc =&amp;gt; Spectrum.cc}  |  89 +-----
 python/pfs/drp/stella/SpectrumContinued.py         | 147 ++++++++++
 python/pfs/drp/stella/SpectrumSet.cc               |  59 ++++
 ...spectraContinued.py =&amp;gt; SpectrumSetContinued.py} | 147 +---------
 python/pfs/drp/stella/__init__.py                  |   5 +-
 python/pfs/drp/stella/fiberTracesContinued.py      |   2 +-
 python/pfs/drp/stella/tests/__init__.py            |   1 +
 python/pfs/drp/stella/tests/base.py                |  73 +++++
 src/{Spectra.cc =&amp;gt; Spectrum.cc}                    |  95 +------
 src/SpectrumSet.cc                                 |  92 +++++++
 tests/test_ReferenceLine.py                        |  44 +++
 tests/test_Spectrum.py                             | 257 +----------------
 tests/test_SpectrumSet.py                          | 204 ++++++++++++++
 20 files changed, 1038 insertions(+), 884 deletions(-)

commit b63edd1cbe642cd0287c06079b1ade503f0f7219 (HEAD -&amp;gt; tickets/PIPE2D-297, origin/tickets/PIPE2D-297)
Author: Paul Price &amp;lt;price@astro.princeton.edu&amp;gt;
Date:   Wed Oct 17 17:45:18 2018 -0400

    pull FiberTrace,FiberTraceSet into their own files
    
    Until now, they have often been mixed up in the same files.
    Reorganising them into their own files, named after themselves, makes
    them easier to find.

 include/pfs/drp/stella/FiberTrace.h                | 125 +++++++++++++++++++++
 .../drp/stella/{FiberTraces.h =&amp;gt; FiberTraceSet.h}  | 123 +-------------------
 .../pfs/drp/stella/math/findAndTraceApertures.h    |   2 +-
 python/pfs/drp/stella/FiberTrace.cc                |  66 +++++++++++
 python/pfs/drp/stella/FiberTraceContinued.py       |  23 ++++
 .../stella/{fiberTraces.cc =&amp;gt; FiberTraceSet.cc}    |  52 +--------
 ...racesContinued.py =&amp;gt; FiberTraceSetContinued.py} |  23 +---
 python/pfs/drp/stella/SConscript                   |   3 +-
 python/pfs/drp/stella/__init__.py                  |   6 +-
 src/{FiberTraces.cc =&amp;gt; FiberTrace.cc}              |  39 +------
 src/FiberTraceSet.cc                               |  49 ++++++++
 src/math/findAndTraceApertures.cc                  |   1 +
 12 files changed, 284 insertions(+), 228 deletions(-)
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="14269" author="price" created="Wed, 24 Oct 2018 19:49:14 +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; writes:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;it looks fine for me and as you say does not warrant a review. So whenever the build succeeds, merge it to master.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;The &lt;a href=&quot;https://travis-ci.org/Subaru-PFS/drp_stella/builds/443234763&quot; class=&quot;external-link&quot; rel=&quot;nofollow&quot;&gt;build&lt;/a&gt; passed; 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|s001co:</customfieldvalue>

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

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