#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;
}


Last change: Sat May 22 13:16:58 2010
Last generated: 2010-05-22 13:16

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.