<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.physik.uzh.ch/lhcb/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://wiki.physik.uzh.ch/lhcb/feed.php">
        <title>LHCb Wiki Pages - brunel</title>
        <description></description>
        <link>https://wiki.physik.uzh.ch/lhcb/</link>
        <image rdf:resource="https://wiki.physik.uzh.ch/lhcb/_media/wiki:dokuwiki.svg" />
       <dc:date>2026-05-30T02:06:38+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.physik.uzh.ch/lhcb/brunel:addextrainfo?rev=1262980763&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.physik.uzh.ch/lhcb/brunel:brunel?rev=1332427796&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.physik.uzh.ch/lhcb/brunel:refittracks?rev=1332428062&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.physik.uzh.ch/lhcb/brunel:resolveparticleid?rev=1269360767&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.physik.uzh.ch/lhcb/brunel:retrievetool?rev=1292839676&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.physik.uzh.ch/lhcb/brunel:troubleshooting?rev=1260262536&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.physik.uzh.ch/lhcb/_media/wiki:dokuwiki.svg">
        <title>LHCb Wiki Pages</title>
        <link>https://wiki.physik.uzh.ch/lhcb/</link>
        <url>https://wiki.physik.uzh.ch/lhcb/_media/wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="https://wiki.physik.uzh.ch/lhcb/brunel:addextrainfo?rev=1262980763&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2010-01-08T19:59:23+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>addextrainfo</title>
        <link>https://wiki.physik.uzh.ch/lhcb/brunel:addextrainfo?rev=1262980763&amp;do=diff</link>
        <description>Add extra-info field for LHCb::Tracks

Problem

When trying to access the extra-info field for a track, it may happen that it is not filled. This can get annoying f. ex. when dumping an nTuple, where only the standard value is filled, like:


tuple-&gt;column( head+&quot;_TrNExpectedTT&quot;, track-&gt;info(LHCb::Track::nExpectedTT, -100.) );</description>
    </item>
    <item rdf:about="https://wiki.physik.uzh.ch/lhcb/brunel:brunel?rev=1332427796&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-03-22T14:49:56+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>brunel</title>
        <link>https://wiki.physik.uzh.ch/lhcb/brunel:brunel?rev=1332427796&amp;do=diff</link>
        <description>Brunel

	*  Troubleshooting  - Bugs and Features for Brunel
	*  Add extra info for tracks  - How to fill the extra-info field for LHCb::Tracks.
	*  How to retrieve a tool - How to retrieve a tool over a certain interface.
	*  Resolve the ParticleID - How to turn a ParticleID into a human readable string.
	*  refit Tracks - How to refit tracks.</description>
    </item>
    <item rdf:about="https://wiki.physik.uzh.ch/lhcb/brunel:refittracks?rev=1332428062&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-03-22T14:54:22+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>refittracks</title>
        <link>https://wiki.physik.uzh.ch/lhcb/brunel:refittracks?rev=1332428062&amp;do=diff</link>
        <description>To refit the Tracks add the following lines to you option file.


seq = GaudiSequencer(&quot;mySeq&quot;)
seq.Members += [TrackStateInitAlg(&quot;myInitAlg&quot;)]
TrackStateInitAlg(&quot;myInitAlg&quot;).TrackLocation = &quot;Rec/Track/Best&quot;
TrackStateInitAlg(&quot;myInitAlg&quot;).addTool( TrackStateInitTool(&quot;TrackStateInitTool&quot; ) )

fitter = TrackEventFitter(&quot;myFit&quot;,TracksInContainer = &quot;Rec/Track/Best&quot;)
fitter.addTool(TrackMasterFitter('Fitter'))
fitter.Fitter.addTool(MeasurementProvider('MeasProvider'))
fitter.Fitter.MeasProvider.Ignor…</description>
    </item>
    <item rdf:about="https://wiki.physik.uzh.ch/lhcb/brunel:resolveparticleid?rev=1269360767&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2010-03-23T16:12:47+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>resolveparticleid</title>
        <link>https://wiki.physik.uzh.ch/lhcb/brunel:resolveparticleid?rev=1269360767&amp;do=diff</link>
        <description>Resolve PartilceID

To turn the PartilceID back into a human readable string you can use the ParticleProperty Service. To do this you need to add the following lines to your code

Brunel

Header File (*.h)

Include the following headers


#include &quot;Kernel/IParticlePropertySvc.h&quot;
#include &quot;Kernel/ParticleProperty.h&quot;</description>
    </item>
    <item rdf:about="https://wiki.physik.uzh.ch/lhcb/brunel:retrievetool?rev=1292839676&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2010-12-20T10:07:56+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>retrievetool</title>
        <link>https://wiki.physik.uzh.ch/lhcb/brunel:retrievetool?rev=1292839676&amp;do=diff</link>
        <description>How to retrieve a tool

General syntax

To retrieve a tool called myTool, which uses the Interface ImyTool, do the following:


ImyTool myTool = tool&lt;ImyTool&gt;(&quot;myTool&quot;, this);


Most of the time you'll want to do this in the initialize() of your algorithm, i.e. you declare your tool as a member variable.</description>
    </item>
    <item rdf:about="https://wiki.physik.uzh.ch/lhcb/brunel:troubleshooting?rev=1260262536&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2009-12-08T08:55:36+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>troubleshooting</title>
        <link>https://wiki.physik.uzh.ch/lhcb/brunel:troubleshooting?rev=1260262536&amp;do=diff</link>
        <description>Troubleshooting

Names in pre-defined Sequences

When you add an instance of an algorithm (f.ex. a TrackAssociator) to a predefined sequence (f.ex. TrackForwardPatSeq), keep in mind that the name of your algorithm must correspond to a predefined name (in this case: 'AssocForward').</description>
    </item>
</rdf:RDF>
