<!-- 
RSS generated by JIRA (8.3.4#803005-sha1:1f96e09b3c60279a408a2ae47be3c745f571388b) at Sat Feb 10 16:34:56 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-1389] Store the MCS camera used in the opDB</title>
                <link>https://pfspipe.ipmu.jp/jira/browse/INSTRM-1389</link>
                <project id="10300" key="INSTRM">Instrument control development</project>
                    <description>&lt;p&gt;Quoting &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; in his email 2021-11-07:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Do we have the book-keeping in opdb to know which camera we are using?  It looks as if a string field for &quot;MCS&quot; or &quot;71M&quot; should be added to the &lt;tt&gt;mcs_exposure&lt;/tt&gt; table.  &lt;/p&gt;&lt;/blockquote&gt;</description>
                <environment></environment>
        <key id="18231">INSTRM-1389</key>
            <summary>Store the MCS camera used in the opDB</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="hassan">hassan</reporter>
                        <labels>
                            <label>EngRun</label>
                    </labels>
                <created>Mon, 11 Oct 2021 14:51:17 +0000</created>
                <updated>Fri, 5 Nov 2021 00:53:57 +0000</updated>
                            <resolved>Fri, 5 Nov 2021 00:53:57 +0000</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>2</watches>
                                                                <comments>
                            <comment id="24794" author="kiyoto.yabe" created="Tue, 26 Oct 2021 06:32:31 +0000"  >&lt;p&gt;Although there might be two cameras (so far), I&apos;m proposing to create a new table `mcs_camera` table for MCS camera id. I&apos;m thinking that id=0 for MCS and 1 for 71M, which will be stored in `mcs_exposure` as well. Any comments are welcome.&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;
&lt;span class=&quot;code-keyword&quot;&gt;class &lt;/span&gt;mcs_camera(Base):
    __tablename__ = &lt;span class=&quot;code-quote&quot;&gt;&apos;mcs_camera&apos;&lt;/span&gt;

    mcs_camera_id = Column(Integer, primary_key=&lt;span class=&quot;code-keyword&quot;&gt;&lt;span class=&quot;code-object&quot;&gt;True&lt;/span&gt;&lt;/span&gt;, autoincrement=&lt;span class=&quot;code-keyword&quot;&gt;&lt;span class=&quot;code-object&quot;&gt;False&lt;/span&gt;&lt;/span&gt;,
                           comment=&lt;span class=&quot;code-quote&quot;&gt;&apos;MCS camera identifier [0=MCS, 1=71M]&apos;&lt;/span&gt;)
    mcs_camera_name = Column(String,
                             comment=&lt;span class=&quot;code-quote&quot;&gt;&apos;MCS camera name [e.g. &lt;span class=&quot;code-quote&quot;&gt;&quot;MCS&quot;&lt;/span&gt;, &lt;span class=&quot;code-quote&quot;&gt;&quot;71M&quot;&lt;/span&gt;]&apos;&lt;/span&gt;)
    comments = Column(String)

    &lt;span class=&quot;code-keyword&quot;&gt;def&lt;/span&gt; __init__(&lt;span class=&quot;code-keyword&quot;&gt;self&lt;/span&gt;, mcs_camera_id, mcs_camera_name,
                 comments):
        &lt;span class=&quot;code-keyword&quot;&gt;self&lt;/span&gt;.mcs_camera_id = mcs_camera_id
        &lt;span class=&quot;code-keyword&quot;&gt;self&lt;/span&gt;.mcs_camera_name = mcs_camera_name
        &lt;span class=&quot;code-keyword&quot;&gt;self&lt;/span&gt;.comments = comments
&#160;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&#160;&lt;/p&gt;</comment>
                            <comment id="24817" author="kiyoto.yabe" created="Wed, 27 Oct 2021 01:00:36 +0000"  >&lt;p&gt;I&apos;m not sure who should be the reviewer but feel free to re-assign.&lt;/p&gt;</comment>
                            <comment id="24841" author="hassan" created="Thu, 28 Oct 2021 01:14:54 +0000"  >&lt;p&gt;No objections with the proposed new table.&lt;/p&gt;

&lt;p&gt;Related to that, there is a discussion in the #pfi-ics slack channel today, in which the camera names would be &lt;tt&gt;rmod_71M&lt;/tt&gt; and &lt;tt&gt;canon_mcs&lt;/tt&gt;.&lt;/p&gt;</comment>
                            <comment id="24959" author="kiyoto.yabe" created="Fri, 5 Nov 2021 00:53:51 +0000"  >&lt;p&gt;merged and closed&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10003">
                    <name>Relates</name>
                                            <outwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="18232">INSTRM-1390</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </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|zzsgak:</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="123">PreEngRun4</customfieldvalue>
    <customfieldvalue id="124">EngRun3Cleanup</customfieldvalue>

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