///////////////////////////////////////////////////////////////////////////////
//                                                                           //
// THaCluster                                                                //
//                                                                           //
// A generic cluster.                                                        //
//                                                                           //
///////////////////////////////////////////////////////////////////////////////

#include "THaCluster.h"
#include <iostream>

using namespace std;

//_____________________________________________________________________________
THaCluster& THaCluster::operator=( const THaCluster& rhs )
{
  // Assignment operator

  TObject::operator=( rhs );
  if( this != &rhs ) {
    fCenter     = rhs.fCenter;
  }
  return *this;
}

//_____________________________________________________________________________
void THaCluster::Clear( const Option_t* )
{
  // Clear the contents of the cluster

  fCenter.SetXYZ( 0.0, 0.0, 0.0 );
}

//_____________________________________________________________________________
void THaCluster::Print( Option_t* ) const
{
  // Print contents of cluster

  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.