Logo ROOT   6.10/09
Reference Guide
TDecayChannel.h
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 //-----------------------------------------------------------------------------
13 // Feb 15 2001 P.Murat: description of the decay channel
14 // --------------------
15 // - matrix element for the decay is not defined yet
16 //-----------------------------------------------------------------------------
17 #ifndef ROOT_TDecayChannel
18 #define ROOT_TDecayChannel
19 
20 #include "TObject.h"
21 #include "TArrayI.h"
22 
23 
24 class TDecayChannel: public TObject{
25 protected:
26  Int_t fNumber; // channel number
27  Int_t fMatrixElementCode; // matrix element for this decay mode
28  Double_t fBranchingRatio; // branching ratio ( < 1)
29  TArrayI fDaughters; // PDG codes of the daughters
30 public:
31  // ****** constructors and destructor
32  TDecayChannel();
38 
39  virtual ~TDecayChannel();
40  // ****** accessors
41 
42  Int_t Number () { return fNumber; }
44  Int_t NDaughters () { return fDaughters.fN; }
46  Int_t DaughterPdgCode(Int_t i) { return fDaughters.fArray[i]; }
47 
48  ClassDef(TDecayChannel,1) // Class describing a particle decay channel
49 };
50 
51 #endif
Int_t NDaughters()
Definition: TDecayChannel.h:44
Description of the decay channel.
Definition: TDecayChannel.h:24
TArrayI fDaughters
Definition: TDecayChannel.h:29
Int_t fMatrixElementCode
Definition: TDecayChannel.h:27
int Int_t
Definition: RtypesCore.h:41
Array of integers (32 bits per element).
Definition: TArrayI.h:27
Double_t fBranchingRatio
Definition: TDecayChannel.h:28
#define ClassDef(name, id)
Definition: Rtypes.h:297
Int_t DaughterPdgCode(Int_t i)
Definition: TDecayChannel.h:46
Int_t MatrixElementCode()
Definition: TDecayChannel.h:43
Int_t fN
Definition: TArray.h:38
Int_t Number()
Definition: TDecayChannel.h:42
TDecayChannel()
default constructor
double Double_t
Definition: RtypesCore.h:55
Int_t * fArray
Definition: TArrayI.h:30
virtual ~TDecayChannel()
destructor
Mother of all ROOT objects.
Definition: TObject.h:37
Double_t BranchingRatio()
Definition: TDecayChannel.h:45