Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TDecayChannel.cxx
Go to the documentation of this file.
1// @(#)root/eg:$Id$
2// Author: P.Murat 15/02/2001
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12/** \class TDecayChannel
13 \ingroup eg
14
15Description of the decay channel
16
17Feb 16 2001 P.Murat
18*/
19
20#include "TDecayChannel.h"
21
23
24////////////////////////////////////////////////////////////////////////////////
25///default constructor
26
28{
29 fNumber = 0;
32}
33
34////////////////////////////////////////////////////////////////////////////////
35///constructor
36
38 Int_t MatrixElementType,
39 Double_t BRatio,
40 Int_t NumberDaughters,
41 Int_t* DaughterCode)
42{
43 fNumber = NumberD;
44 fMatrixElementCode = MatrixElementType;
45 fBranchingRatio = BRatio;
46 fDaughters.Set(NumberDaughters,DaughterCode);
47}
48
49////////////////////////////////////////////////////////////////////////////////
50///destructor
52}
53
#define ClassImp(name)
Definition Rtypes.h:377
void Set(Int_t n) override
Set size of this array to n ints.
Definition TArrayI.cxx:105
Description of the decay channel.
Int_t fMatrixElementCode
Double_t fBranchingRatio
TDecayChannel()
default constructor
~TDecayChannel() override
destructor
TArrayI fDaughters