#include "htrack.h"
//*-- Author : Manuel Sanchez Garcia
//*-- Modified : 30/03/98
//*-- Copyright : FPGENP

//*************************************************************************
//
// HTrack
// 
// This class is dummy.
//
//*************************************************************************

ClassImp(HTrack)

 HTrack::HTrack(void) {
  // Default constructor
  fP=0.0;
}

 HTrack::HTrack(HTrack &aTrack) {
  // Copy constructor.
  fP=aTrack.fP;
}

 HTrack::~HTrack(void) {  
  // Destructor.
}

 void HTrack::setMomentum(Float_t aP) {
  // Set guess what.
  fP=aP;
}



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.