//_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;
}


Last change: Sat May 22 13:13:53 2010
Last generated: 2010-05-22 13:13

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.