#include "LCDStripHit.h"
///////////////////////////////////////////////////////////////////////////
//
// LCDStripHit
// The StripHit class contains the information about a single calorimeter
// tower. This includes the stripID tag and the list of particles which
// hit the strip.
//
///////////////////////////////////////////////////////////////////////////
ClassImp(LCDStripHit)
void LCDStripHit::AddHit(Int_t hit, Int_t index) {
// Add a particle to the list of those hitting the strip
if (hit > 19) {
fprintf(stderr,"LCDStripHit::AddHit hit # is over 19!!! hit=%dn",hit);
} else {
m_MC[hit] = index;
}
}