Revision 67b502021c47d95a161307bd8f930746f6be115f authored by Philippe Canal on 23 February 2016, 22:56:19 UTC, committed by Philippe Canal on 26 February 2016, 01:28:03 UTC
1 parent ab60d60
Raw File
NdbReaction.h
#ifndef REACTION_H
#define REACTION_H

#include <TObjArray.h>

#include "NdbMF.h"
#include "NdbMTReactionXS.h"
#include "NdbParticleList.h"

/* ========= NdbReaction ============ */
class NdbReaction : public NdbMF
{
protected:
   TObjArray reac; // List of reaction Cross Sections

public:
   NdbReaction()
      : NdbMF(3, "Reaction cross sections"),
        reac() { }
   ~NdbReaction() {}

   ClassDef(NdbReaction,1)
}; // NdbReaction

#endif
back to top