#include "TDecayChannel.h"
ClassImp(TDecayChannel)
TDecayChannel::TDecayChannel()
{
fNumber = 0;
fMatrixElementCode = 0;
fBranchingRatio = 0;
}
TDecayChannel::TDecayChannel(Int_t NumberD,
Int_t MatrixElementType,
Double_t BRatio,
Int_t NumberDaughters,
Int_t* DaughterCode)
{
fNumber = NumberD;
fMatrixElementCode = MatrixElementType;
fBranchingRatio = BRatio;
fDaughters.Set(NumberDaughters,DaughterCode);
}
TDecayChannel::~TDecayChannel() {
}
Last change: Wed Jun 25 08:36:05 2008
Last generated: 2008-06-25 08:36
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.