<!-- 
RSS generated by JIRA (8.3.4#803005-sha1:1f96e09b3c60279a408a2ae47be3c745f571388b) at Sat Feb 10 16:35:36 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>[INSTRM-1448] Add table for fiducial fibre matches</title>
                <link>https://pfspipe.ipmu.jp/jira/browse/INSTRM-1448</link>
                <project id="10300" key="INSTRM">Instrument control development</project>
                    <description>&lt;p&gt;As discussed earlier, there needs to be an additional table in the database&#160; which records the matching of the fiducial fibres to the measured spots, ie, an analogue to cobra_match for fiducial fibres.&#160;&lt;/p&gt;

&lt;p&gt;Currently, the spots matched with cobras are recorded in cobra_match, but the ff matches are not recorded anywhere.&#160;&lt;/p&gt;</description>
                <environment></environment>
        <key id="18348">INSTRM-1448</key>
            <summary>Add table for fiducial fibre matches</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="kiyoto.yabe">Kiyoto Yabe</assignee>
                                    <reporter username="karr">karr</reporter>
                        <labels>
                            <label>EngRun</label>
                    </labels>
                <created>Mon, 15 Nov 2021 07:27:11 +0000</created>
                <updated>Fri, 17 Dec 2021 12:35:44 +0000</updated>
                            <resolved>Sun, 21 Nov 2021 02:15:18 +0000</resolved>
                                                                    <component>spt_operational_database</component>
                        <due></due>
                            <votes>0</votes>
                                    <watches>6</watches>
                                                                <comments>
                            <comment id="25081" author="kiyoto.yabe" created="Mon, 15 Nov 2021 08:35:01 +0000"  >&lt;p&gt;OK, I will make `fiducial_fiber_match` table similarly to `cobra_match`. We do not need `fiducial_fiber_target` table, right?&lt;/p&gt;</comment>
                            <comment id="25083" author="karr" created="Mon, 15 Nov 2021 08:39:17 +0000"  >&lt;p&gt;Right, the fiducials don&apos;t move.&lt;/p&gt;</comment>
                            <comment id="25087" author="kiyoto.yabe" created="Mon, 15 Nov 2021 17:33:00 +0000"  >&lt;p&gt;OK. Then, what columns do we need in `fiducial_fiber_match` table? &lt;br/&gt;
Currently, I&apos;m thinking about the same columns for PFI coordinates as `cobra_match`:&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-python&quot;&gt;
    pfi_center_x_mm = Column(REAL, comment=&lt;span class=&quot;code-quote&quot;&gt;&apos;Actual x-position on the PFI [mm]&apos;&lt;/span&gt;)
    pfi_center_y_mm = Column(REAL, comment=&lt;span class=&quot;code-quote&quot;&gt;&apos;Actual y-position on the PFI [mm]&apos;&lt;/span&gt;)
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;, but we do not need them as well? What is the usage of the table?&lt;/p&gt;</comment>
                            <comment id="25095" author="karr" created="Tue, 16 Nov 2021 00:32:23 +0000"  >&lt;p&gt;Thinking about it, the fiducial fibre positions in mm are already known and included in the database in the fiducial fibre table.&#160; What this table needs is possibly just fibre_id and spot_id. With that, we can link back to mcs_data to get the centroid information and see how the matching process worked, and the brightness of the fibres.&#160;&lt;/p&gt;</comment>
                            <comment id="25098" author="kiyoto.yabe" created="Tue, 16 Nov 2021 03:39:20 +0000"  >&lt;p&gt;OK, I removed pfi_center_x/y_mm.&lt;/p&gt;</comment>
                            <comment id="25113" author="kiyoto.yabe" created="Wed, 17 Nov 2021 08:02:31 +0000"  >&lt;p&gt;I have pushed the change. Could you review that,&#160;&lt;a href=&quot;https://pfspipe.ipmu.jp/jira/secure/ViewProfile.jspa?name=karr&quot; class=&quot;user-hover&quot; rel=&quot;karr&quot;&gt;karr&lt;/a&gt; ?&lt;/p&gt;</comment>
                            <comment id="25117" author="karr" created="Wed, 17 Nov 2021 08:10:59 +0000"  >&lt;p&gt;I would remove the mcs_frame_id column, as that can be derived from pfs_visit_id and iteration, but otherwise it looks good.&lt;/p&gt;</comment>
                            <comment id="25170" author="cloomis" created="Sat, 20 Nov 2021 15:17:20 +0000"  >&lt;p&gt;For the sake of 1-1 matching with the cobra_match table I think we should keep that column: the current schema looks good to me. The table would be handy...&lt;/p&gt;</comment>
                            <comment id="25171" author="kiyoto.yabe" created="Sun, 21 Nov 2021 02:10:15 +0000"  >&lt;p&gt;I think the discussion converged, so I merge the current one and close this ticket.&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|02qpqo:</customfieldvalue>

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

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