#include "THaCluster.h"
#include <iostream>
using namespace std;
THaCluster& THaCluster::operator=( const THaCluster& rhs )
{
TObject::operator=( rhs );
if( this != &rhs ) {
fCenter = rhs.fCenter;
}
return *this;
}
void THaCluster::Clear( const Option_t* )
{
fCenter.SetXYZ( 0.0, 0.0, 0.0 );
}
void THaCluster::Print( Option_t* ) const
{
cout << fCenter.X() << " " << fCenter.Y() << " " << fCenter.Z() << endl;
}
ClassImp(THaCluster)
Last change: Sat Nov 7 21:26:43 2009
Last generated: 2009-11-07 21:26
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.