//////////////////////////////////////////////////////////////////////////
// file: TMBMCpart.cpp //
// TMBTree MCpart class
// has MCparticle information
//
// created: 21-March-2002 Serban Protopopescu
// //
//////////////////////////////////////////////////////////////////////////
#include "tmb_tree/TMBMCpart.hpp"
ClassImp(TMBMCpart)
//_____________________________________________________________________________
TMBMCpart::TMBMCpart(Float_t px, Float_t py, Float_t pz, Float_t E,
Float_t q, Float_t pt, Float_t phi, Float_t eta,
Int_t pdgid, TRef vtx, TRef vtxend)
{
_px = px;
_py = py;
_pz = pz;
_E = E;
_q = q;
_pt = pt;
_phi= phi;
_eta= eta;
_pdgid=pdgid;
_vtx=vtx;
_vtxend=vtxend;
}
//______________________________________________________________________________
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.