00001 /*************************************************************************** 00002 * 00003 * $Id: StTofMCHit.cxx,v 2.3 2004/07/15 16:36:25 ullrich Exp $ 00004 * 00005 * Author: Wei-Ming Zhang, April 2001 00006 *************************************************************************** 00007 * 00008 * Description: 00009 * 00010 *************************************************************************** 00011 * 00012 * $Log: StTofMCHit.cxx,v $ 00013 * Revision 2.3 2004/07/15 16:36:25 ullrich 00014 * Removed all clone() declerations and definitions. Use StObject::clone() only. 00015 * 00016 * Revision 2.2 2003/05/21 18:22:46 ullrich 00017 * Major Revision of ToF classes (F. Geurts) 00018 * 00019 * Revision 2.1 2001/04/26 01:07:42 ullrich 00020 * Initial Revision. 00021 * 00022 **************************************************************************/ 00023 #include "StTofMCHit.h" 00024 00025 static const char rcsid[] = "$Id: StTofMCHit.cxx,v 2.3 2004/07/15 16:36:25 ullrich Exp $"; 00026 00027 ClassImp(StTofMCHit) 00028 00029 StTofMCHit::StTofMCHit() {/* noop */} 00030 00031 StTofMCHit::~StTofMCHit() {/* noop */} 00032 00033 ostream& 00034 operator<<(ostream& os, const StTofMCHit& hit) 00035 { 00036 return (os << "StTofMCHit::> " << ", trayId= " 00037 << hit.trayIndex() << ", moduleId= " 00038 << hit.moduleIndex() << ", cell= " << hit.cellIndex() 00039 << ", trkId= " << hit.trkId() 00040 << ", GeantId= " << hit.gId()); 00041 }
1.5.9