//*-- AUTHOR : Leszek Kidon
//*-- Modified : 19/04/05 by Jacek Otwinowski
//
//_HADES_CLASS_DESCRIPTION 
///////////////////////////////////////////////////////////////////////////////
//                                                                           
// HShowerHitTofTrack
// 
// Data object for correlated Shower/Tofino hits and
// corresponding geant track numbers.  
// This data object is filled by HShowerHitTofTrackMatcher 
// which takes information from HShowerHitTof 
// and HShowerTrack data containers.
//                              
///////////////////////////////////////////////////////////////////////////////

#pragma implementation

#include "hshowerhittoftrack.h"

ClassImp(HShowerHitTofTrack)

 void HShowerHitTofTrack::clear() {
  // clears the object
  HShowerHitTof::clear();
  nTrack = 0;
}

HShowerHitTofTrack& HShowerHitTofTrack::operator=(HShowerHitTofTrack& ht) {
  HShowerHitTof::operator=(ht);
  nTrack = ht.nTrack;
  
  return *this;
}

HShowerHitTofTrack& HShowerHitTofTrack::operator=(HShowerHitTof& ht) {
  HShowerHitTof::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.