]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TTherminator/Therminator/DecayChannel.cxx
Restored optimization
[u/mrichter/AliRoot.git] / TTherminator / Therminator / DecayChannel.cxx
CommitLineData
2e967919 1/******************************************************************************
2 * T H E R M I N A T O R *
3 * THERMal heavy-IoN generATOR *
4 * version 1.0 *
5 * *
6 * Authors of the model: Wojciech Broniowski, Wojciech.Broniowski@ifj.edu.pl, *
7 * Wojciech Florkowski, Wojciech.Florkowski@ifj.edu.pl *
8 * Authors of the code: Adam Kisiel, kisiel@if.pw.edu.pl *
9 * Tomasz Taluc, ttaluc@if.pw.edu.pl *
10 * Code designers: Adam Kisiel, Tomasz Taluc, Wojciech Broniowski, *
11 * Wojciech Florkowski *
12 * *
13 * For the detailed description of the program and furhter references *
14 * to the description of the model plesase refer to: nucl-th/0504047, *
15 * accessibile at: http://www.arxiv.org/nucl-th/0504047 *
16 * *
17 * Homepage: http://hirg.if.pw.edu.pl/en/therminator/ *
18 * *
19 * This code can be freely used and redistributed. However if you decide to *
20 * make modifications to the code, please contact the authors, especially *
21 * if you plan to publish the results obtained with such modified code. *
22 * Any publication of results obtained using this code must include the *
23 * reference to nucl-th/0504047 and the published version of it, when *
24 * available. *
25 * *
26 *****************************************************************************/
27#include "DecayChannel.h"
28
29DecayChannel::DecayChannel() :
30 mParticleType1(0), mParticleType2(0), mParticleType3(-1), mBranchRatio(0.0)
31{
32}
33
34DecayChannel::DecayChannel(const DecayChannel& aChannel)
35{
36 mBranchRatio = aChannel.GetBranchingRatio();
37 mParticleType1 = aChannel.GetParticle1();
38 mParticleType2 = aChannel.GetParticle2();
39 mParticleType3 = aChannel.GetParticle3();
40}
41
42DecayChannel::DecayChannel(double aBranchRatio, int aPartType1, int aPartType2, int aPartType3) :
43 mParticleType1(aPartType1), mParticleType2(aPartType2), mParticleType3(aPartType3), mBranchRatio(aBranchRatio)
44{
45}
46
47DecayChannel::~DecayChannel()
48{
49}
50
51int
52DecayChannel::GetParticle1() const
53{
54 return mParticleType1;
55}
56
57int
58DecayChannel::GetParticle2() const
59{
60 return mParticleType2;
61}
62
63int
64DecayChannel::GetParticle3() const
65{
66 return mParticleType3;
67}
68
69double
70DecayChannel::GetBranchingRatio() const
71{
72 return mBranchRatio;
73}
74
75int
76DecayChannel::Is3Particle() const
77{
78 return (mParticleType3 != -1);
79}
80
81
82void DecayChannel::SetParticle1(int aPartType1)
83{
84 mParticleType1 = aPartType1;
85}
86
87void DecayChannel::SetParticle2(int aPartType2)
88{
89 mParticleType2 = aPartType2;
90}
91
92void
93DecayChannel::SetParticle3(int aPartType3)
94{
95 mParticleType3 = aPartType3;
96}
97
98void DecayChannel::SetBranchingRatio(double aRatio)
99{
100 mBranchRatio = aRatio;
101}