This is tmb_tree, version p14-br-11 | See all available versions


//////////////////////////////////////////////////////////////////////////
//                                                                      //
//   file: TMBMCevtInfo.cpp                                                 //
//   TMBTree MCevt class 
//     has MCevt information
//
//   created: 23-Nov-2002  Wade Fisher                                         
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#include "mc_analyze/TMBMCevtInfo.hpp"


ClassImp(TMBMCevtInfo)


//_____________________________________________________________________________

 TMBMCevtInfo::TMBMCevtInfo():  
  _run(0), _evtid(0), _nreac(0), _xsect(0), _weight(0),_qsq(0),_shat(0),
  _that(0),_uhat(0)   
{};


 TMBMCevtInfo::TMBMCevtInfo( const TMBMCevtInfo & evt )
{
  _run    = evt._run;
  _evtid  = evt._evtid;
  _nreac  = evt._nreac;
  _xsect  = evt._xsect;
  _weight = evt._weight;
  _qsq    = evt._qsq;
  _shat   = evt._shat;
  _that   = evt._that;
  _uhat   = evt._uhat;
}

 TMBMCevtInfo::TMBMCevtInfo(Int_t run, Int_t evtid, Int_t nreac, Float_t xsect, Float_t weight, Float_t qsq,  Float_t shat, Float_t that, Float_t uhat)
{
  Set(run, evtid, nreac, xsect, weight, qsq, shat, that, uhat);
}

   void TMBMCevtInfo::Set(Int_t run, Int_t evtid, Int_t nreac, Float_t xsect, Float_t weight, Float_t qsq,  Float_t shat, Float_t that, Float_t uhat)
{
  _run    = run;
  _evtid  = evtid;
  _nreac  = nreac;
  _xsect  = xsect;
  _weight = weight;
  _qsq    = qsq;
  _shat   = shat;
  _that   = that;
  _uhat   = uhat;
}

 TMBMCevtInfo::~TMBMCevtInfo()
{;}


//______________________________________________________________________________




ROOT page - Class index - Class Hierarchy - 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.