//-----------------------------------------------------------------------------
// Feb 16 2001 P.Murat: description of the decay channel
//-----------------------------------------------------------------------------
#include "TDecayChannel.h"
ClassImp(TDecayChannel)
//_____________________________________________________________________________
TDecayChannel::TDecayChannel() {
}
//_____________________________________________________________________________
TDecayChannel::TDecayChannel(Int_t Number,
Int_t MatrixElementType,
Double_t BranchingRatio,
Int_t NDaughters,
Int_t* DaughterPdgCode)
{
fNumber = Number;
fMatrixElementCode = MatrixElementType;
fBranchingRatio = BranchingRatio;
fDaughters.Set(NDaughters,DaughterPdgCode);
}
//_____________________________________________________________________________
TDecayChannel::~TDecayChannel() {
}
ROOT page - Class index - Top of the page
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.