]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONVDigitStore.cxx
Protection if the compiler is not gcc
[u/mrichter/AliRoot.git] / MUON / AliMUONVDigitStore.cxx
index 1954ad01d70f1cc0ca564501742537d7c195dedb..412060d203e20f9ac116ce7da275e1bb0a291f17 100644 (file)
@@ -15,6 +15,7 @@
 
 // $Id$
 
+//-----------------------------------------------------------------------------
 /// \class AliMUONVDigitStore
 ///
 /// Interface for a digit (or sdigit) container
@@ -23,6 +24,7 @@
 /// can create iterators to loop over (part of) the elements.
 ///
 /// \author Laurent Aphecetche, Subatech
+//-----------------------------------------------------------------------------
 
 #include "AliMUONVDigitStore.h"
 
@@ -95,6 +97,8 @@ AliMUONVDigitStore::Add(Int_t detElemId,
 AliMUONVDigitStore* 
 AliMUONVDigitStore::Create(const char* digitstoreclassname)
 {
+  /// Create a concrete digitStore, given its classname
+  
   TClass* classPtr = TClass::GetClass(digitstoreclassname);
   if (!classPtr)
   {
@@ -122,6 +126,7 @@ AliMUONVDigitStore::Create(TTree& tree)
 AliMUONVDigit* 
 AliMUONVDigitStore::FindObject(const TObject* object) const
 {
+  /// Find an object, if of AliMUONVDigit type.
   const AliMUONVDigit* digit = dynamic_cast<const AliMUONVDigit*>(object);
   if (digit)
   {