]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PYTHIA8/pythia8130/xmldoc/SemiInternalResonances.xml
bug fix and small changed in the macros
[u/mrichter/AliRoot.git] / PYTHIA8 / pythia8130 / xmldoc / SemiInternalResonances.xml
CommitLineData
5ad4eb21 1<chapter name="Semi-Internal Resonances">
2
3<h2>Semi-Internal Resonances</h2>
4
5The introduction of a new <aloc href="SemiInternalProcesses">
6semi-internal process</aloc> may also involve a new particle,
7not currently implemented in PYTHIA. Often it is then enough to
8use the <aloc href="ParticleDataScheme">standard machinery</aloc>
9to introduce a new particle (<code>id:all = ...</code>) and new
10decay channels (<code>id:addChannel = ...</code>). By default this
11only allows you to define a fixed total width and fixed branching
12ratios. Using <aloc href="ResonanceDecays"><code>meMode</code></aloc>
13values 100 or bigger provides the possibility of a very
14simple threshold behaviour.
15
16<p/>
17If you want to have complete freedom, however, there are two
18ways to go. One is that you make the resonance decay part of the
19hard process itself, either using the
20<aloc href="LesHouchesAccord">Les Houches interface</aloc> or
21a semi-internal process. The other is for you to create a new
22<code>ResonanceWidths</code> object, where you write the code
23needed for a calculation of the partial width of a particular
24channel.
25
26<p/>
27Here we will explain what is involved in setting up a resonance.
28Should you actually go ahead with this, it is strongly recommended
29to use an existing resonance as a template, to get the correct
30structure. There also exists a sample main program,
31<code>main26.cc</code>, that illustrates how you could combine
32a new process and a new resonance.
33
34<p/>
35There are three steps involved in implementing a new resonance:
36<br/>1) providing the standard particle information, as already
37outlined above (<code>id:all = ...</code>,
38<code>id:addChannel = ...</code>), except that now branching
39ratios need not be specified, since they anyway will be overwritten
40by the dynamically calculated values.
41<br/>2) writing the class that calculates the partial widths.
42<br/>3) handing in a pointer to an instance of this class to PYTHIA.
43<br/>We consider the latter two aspects in turn.
44
45<h3>The ResonanceWidths Class</h3>
46
47The resonance-width calculation has to be encoded in a new class.
48The relevant code could either be put before the main program in the
49same file, or be stored separately, e.g. in a matched pair
50of <code>.h</code> and <code>.cc</code> files. The latter may be more
51convenient, in particular if the calculations are lengthy, or
52likely to be used in many different runs, but of course requires
53that these additional files are correctly compiled and linked.
54
55<p/>
56The class has to be derived from the <code>ResonanceWidths</code>
57base class. It can implement a number of methods. The constructor
58and the <code>calcWidth</code> ones are always needed, while others
59are for convenience. Much of the administrativ machinery is handled
60by methods in the base class.
61
62<p/>Thus, in particular, you must implement expressions for all
63possible final states, whether switched on in the current run or not,
64since all contribute to the total width needed in the denominator of
65the Breit-Wigner expression. Then the methods in the base class take
66care of selecting only allowed channels where that is required, and
67also of including effects of closed channels in secondary decays.
68These methods can be accessed indirectly via the
69<aloc href="ResonanceDecays"><code>res...</code></aloc>
70methods of the normal particle database.
71
72<p/>
73A <b>constructor</b> for the derived class obviously must be available.
74Here you are quite free to allow a list of arguments, to set
75the parameters of your model. The constructor must call the
76base-class <code>initBasic(idResIn)</code> method, where the argument
77<code>idResIn</code> is the PDG-style identity code you have chosen
78for the new resonance. When you create several related resonances
79as instances of the same class you would naturally make
80<code>idResIn</code> an argument of the constructor; for the
81PYTHIA classes this convention is used also in cases when it is
82not needed.
83<br/>The <code>initBasic(...)</code> method will
84hook up the <code>ResonanceWidths</code> object with the corresponding
85entry in the generic particle database, i.e. with the normal particle
86information you set up in point 1) above. It will store, in base-class
87member variables, a number of quantities that you later may find useful:
88<br/><code>idRes</code> : the identity code you provide;
89<br/><code>hasAntiRes</code> : whether there is an antiparticle;
90<br/><code>mRes</code> : resonance mass;
91<br/><code>GammaRes</code> resonance width;
92<br/><code>m2Res</code> : the squared mass;
93<br/><code>GamMRat</code> : the ratio of width to mass.
94
95<p/>
96A <b>destructor</b> is only needed if you plan to delete the resonance
97before the natural end of the run, and require some special behaviour
98at that point. If you call such a destructor you will leave a pointer
99dangling inside the <code>Pythia</code> object you gave it in to,
100if that still exists.
101
102<method name="void initConstants()">
103is called once during initialization, and can then be used to set up
104further parameters specific to this particle species, such as couplings,
105and perform calculations that need not be repeated for each new event,
106thereby saving time. This method needs not be implemented.
107
108<method name="void calcPreFac(bool calledFromInit = false)">
109is called once a mass has been chosen for the resonance, but before
110a specific final state is considered. This routine can therefore
111be used to perform calculations that otherwise might have to be repeated
112over and over again in <code>calcWidth</code> below. It is optional
113whether you want to use this method, however, or put
114everything in <code>calcWidth()</code>.
115<br/>The optional argument will have the value <code>true</code> when
116the resonance is initialized, and then be <code>false</code> throughout
117the event generation, should you wish to make a distinction.
118In PYTHIA such a distinction is made for <ei>gamma^*/Z^0</ei> and
119<ei>gamma^*/Z^0/Z'^0</ei>, owing to the necessity of a special
120description of interference effects, but not for other resonances.
121<br/>In addition to the base-class member variables already described
122above, <code>mHat</code> contains the current mass of the resonance.
123At initialization this agrees with the nominal mass <code>mRes</code>,
124but during the run it will not (in general).
125
126<method name="void calcWidth(bool calledFromInit = false)">
127is the key method for width calculations and returns a partial width
128value, as further described below. It is called for a specific
129final state, typically in a loop over all allowed final states,
130subsequent to the <code>calcPreFac(...)</code> call above.
131Information on the final state is stored in a number of base-class
132variables, for you to use in your calculations:
133<br/><code>iChannel</code> : the channel number in the list of
134possible decay channels;
135<br/><code>mult</code> : the number of decay products;
136<br/><code>id1, id2, id3</code> : the identity code of up to the first
137three decay products, arranged in descending order of the absolute value
138of the identity code;
139<br/><code>id1Abs, id2Abs, id3Abs</code> : the absolute value of the
140above three identity codes;
141<br/><code>mHat</code> : the current resonance mass, which is the same
142as in the latest <code>calcPreFac(...)</code> call;
143<br/><code>mf1, mf2, mf3</code> : masses of the above decay products;
144<br/><code>mr1, mr2, mr3</code> : squared ratio of the product masses
145to the resonance mass;
146<br/><code>ps</code> : is only meaningful for two-body decays, where it
147gives the phase-space factor
148<ei>ps = sqrt( (1. - mr1 - mr2)^2 - 4. * mr1 * mr2 )</ei>;
149<br/>In two-body decays the third slot is zero for the above properties.
150Should there be more than three particles in the decay, you would have
151to take care of the subsequent products yourself, e.g. using
152<br/><code>particlePtr->decay[iChannel].product(j);</code>
153<br/>to extract the <code>j</code>'th decay products (with
154<code>j = 0</code> for the first, etc.). Currently we are not aware
155of any such examples.
156<br/>The base class also contains methods for <ei>alpha_em</ei> and
157<ei>alpha_strong</ei> evaluation, and can access many standard-model
158couplings; see the existing code for examples.
159<br/>The result of your calculation should be stored in
160<br/><code>widNow</code> : the partial width of the current channel,
161expressed in GeV.
162
163<method name="double widthChan( mHat, idAbs1, idAbs2)">
164is not normally used. In PYTHIA the only exception is Higgs decays,
165where it is used to define the width (except for colour factors)
166associated with a specific incoming state. It allows the results of
167some loop expressions to be pretabulated.
168
169
170<h3>Access to resonance widths</h3>
171
172Once you have implemented a class, it is straightforward to
173make use of it in a run. Assume you have written a new class
174<code>MyResonance</code>, which inherits from
175<code>ResonanceWidths</code>. You then create an instance of
176this class and hand it in to a <code>pythia</code> object with
177<pre>
178 ResonanceWidths* myResonance = new MyResonance();
179 pythia.setResonancePtr( myResonance);
180</pre>
181If you have several resonances you can repeat the procedure any number
182of times. When <code>pythia.init(...)</code> is called these resonances
183are initialized along with all the internal resonances, and treated in
184exactly the same manner. See also the <aloc href="ProgramFlow">Program
185Flow</aloc>
186description.
187
188<p/>
189If the code should be of good quality and general usefulness,
190it would be simple to include it as a permanently available process
191in the standard program distribution. The final step of that integration
192ought to be left for the PYTHIA authors, but basically all that is
193needed is to add one line in
194<code>ParticleDataTable::initResonances</code>, where one creates an
195instance of the resonance in the same way as for the resonances already
196there. In addition, the particle data and decay table for the new
197resonance has to be added to the permanent
198<aloc href="ParticleData">particle database</aloc>, and the code itself
199to <code>include/ResonanceWidths.h</code> and
200<code>src/ResonanceWidths.cc</code>.
201
202</chapter>
203
204<!-- Copyright (C) 2008 Torbjorn Sjostrand -->