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