//_HADES_CLASS_DESCRIPTION 
///////////////////////////////////////////////////////////////////////////////
//                                                                           
// HShowerHitTrack
// class joins data in hit level with track number
//                              
///////////////////////////////////////////////////////////////////////////////
#pragma implementation

#include "hshowerhittrack.h"

ClassImp(HShowerHitTrack)

 void HShowerHitTrack::clear() {
  // clears the object
  HShowerHit::clear();
  nTrack = 0;
}

HShowerHitTrack& HShowerHitTrack::operator=(HShowerHitTrack& ht) {
  HShowerHit::operator=(ht);
  nTrack = ht.nTrack;
  
  return *this;
}

HShowerHitTrack& HShowerHitTrack::operator=(HShowerHit& ht) {
  HShowerHit::operator=(ht);
  nTrack = 0;
  
  return *this;
}



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.