00001 00005 /*************************************************************************** 00006 * 00007 * $Id: StTpcPadrowHitCollection.h,v 2.3 2002/02/22 22:56:52 jeromel Exp $ 00008 * 00009 * Author: Thomas Ullrich, July 1999 00010 *************************************************************************** 00011 * 00012 * Description: 00013 * 00014 *************************************************************************** 00015 * 00016 * $Log: StTpcPadrowHitCollection.h,v $ 00017 * Revision 2.3 2002/02/22 22:56:52 jeromel 00018 * Doxygen basic documentation in all header files. None of this is required 00019 * for QM production. 00020 * 00021 * Revision 2.2 1999/10/28 22:27:15 ullrich 00022 * Adapted new StArray version. First version to compile on Linux and Sun. 00023 * 00024 * Revision 2.1 1999/10/13 19:44:02 ullrich 00025 * Initial Revision 00026 * 00027 **************************************************************************/ 00028 #ifndef StTpcPadrowHitCollection_hh 00029 #define StTpcPadrowHitCollection_hh 00030 00031 #include "StObject.h" 00032 #include "StContainers.h" 00033 00034 class StTpcHit; 00035 00036 class StTpcPadrowHitCollection : public StObject { 00037 public: 00038 StTpcPadrowHitCollection(); 00039 ~StTpcPadrowHitCollection(); 00040 // StTpcPadrowHitCollection(const StTpcPadrowHitCollection&); use default 00041 // const StTpcPadrowHitCollection& 00042 // operator=(const StTpcPadrowHitCollection&); use default 00043 00044 StSPtrVecTpcHit& hits(); 00045 const StSPtrVecTpcHit& hits() const; 00046 00047 private: 00048 StSPtrVecTpcHit mHits; 00049 00050 ClassDef(StTpcPadrowHitCollection,1) 00051 }; 00052 #endif
1.5.9