// ----------------------------------------------------------------------------
// $Id: LCDStripHit.cxx,v 1.1 2001/05/10 17:25:06 toshi Exp $
// ----------------------------------------------------------------------------
//
// $Log: LCDStripHit.cxx,v $
// Revision 1.1  2001/05/10 17:25:06  toshi
// Rename *.C to *.cxx.
//
// Revision 1.2  2001/04/28 23:44:52  toshi
// Start to use CVS.
//
//
///////////////////////////////////////////////////////////////////////////
//                                                                       
// 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.
//                                                                       
///////////////////////////////////////////////////////////////////////////

#include "LCDStripHit.h"

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




ROOT page - Class index - 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.