//_HADES_CLASS_DESCRIPTION 
///////////////////////////////////////////////////////////////////////////////
//                                                                           
// HShowerPIDTrack
// class joins data in PID level with track number
//                              
///////////////////////////////////////////////////////////////////////////////
#pragma implementation

#include "hshowerpidtrack.h"

ClassImp(HShowerPIDTrack)

 void HShowerPIDTrack::clear() {
  // clears the object
  HShowerPID::clear();
  nTrack = 0;
}

HShowerPIDTrack& HShowerPIDTrack::operator=(HShowerPIDTrack& pt) {
  HShowerPID::operator=(pt);
  nTrack = pt.nTrack;

  return *this;
}

HShowerPIDTrack& HShowerPIDTrack::operator=(HShowerPID& pt) {
  HShowerPID::operator=(pt);
  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.