00001 00005 /*************************************************************************** 00006 * 00007 * $Id: StSvtWaferHitCollection.h,v 2.3 2002/02/22 22:56:51 jeromel Exp $ 00008 * 00009 * Author: Thomas Ullrich, Sep 1999 00010 *************************************************************************** 00011 * 00012 * Description: 00013 * 00014 *************************************************************************** 00015 * 00016 * $Log: StSvtWaferHitCollection.h,v $ 00017 * Revision 2.3 2002/02/22 22:56:51 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:26:58 ullrich 00022 * Adapted new StArray version. First version to compile on Linux and Sun. 00023 * 00024 * Revision 2.1 1999/10/13 19:43:53 ullrich 00025 * Initial Revision 00026 * 00027 **************************************************************************/ 00028 #ifndef StSvtWaferHitCollection_hh 00029 #define StSvtWaferHitCollection_hh 00030 00031 #include "StObject.h" 00032 #include "StContainers.h" 00033 00034 class StSvtHit; 00035 00036 class StSvtWaferHitCollection : public StObject { 00037 public: 00038 StSvtWaferHitCollection(); 00039 // StSvtWaferHitCollection(const StSvtWaferHitCollection&); use default 00040 // const StSvtWaferHitCollection& 00041 // operator=(const StSvtWaferHitCollection&); use default 00042 ~StSvtWaferHitCollection(); 00043 00044 StSPtrVecSvtHit& hits(); 00045 const StSPtrVecSvtHit& hits() const; 00046 00047 private: 00048 StSPtrVecSvtHit mHits; 00049 00050 ClassDef(StSvtWaferHitCollection,1) 00051 }; 00052 #endif
1.5.9