]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONV1DStore.cxx
- Adapted comments for Doxygen
[u/mrichter/AliRoot.git] / MUON / AliMUONV1DStore.cxx
index 60e07e843a9569cccd5dd33dba4d364ec0022a6f..bc5ccad7264616579b918e88f7e6d9a8d8d4b57a 100644 (file)
 
 #include "AliMUONV1DStore.h"
 
+/// \class AliMUONV1DStore
+/// Defines an interface equivalent to a list of TObject, indexed
+/// by integer (somehow a vector, except that indices are not necessarily
+/// sequential).
+/// 
+/// It's extremely simple and hopefully allow many implementations.
+/// It also makes the object ownership self-evident.
+///
+/// \author Laurent Aphecetche
+
+/// \cond CLASSIMP
 ClassImp(AliMUONV1DStore)
+/// \endcond
+
+//_____________________________________________________________________________
+AliMUONV1DStore::AliMUONV1DStore()
+{
+/// Default constructor
+}
 
 //_____________________________________________________________________________
 AliMUONV1DStore::~AliMUONV1DStore()
 {
+/// Destructor
 }
+
+
+