]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/mapping/AliMpPadIteratorPtr.cxx
Adding comment lines to class description needed for Root documentation,
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpPadIteratorPtr.cxx
index b0616c37a0574116c908f0455d743884952c560f..4b9c5338eda7d08aeff36f65ebffa22c03ebf48e 100755 (executable)
@@ -1,6 +1,23 @@
+/**************************************************************************
+ * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ *                                                                        *
+ * Author: The ALICE Off-line Project.                                    *
+ * Contributors are mentioned in the code where appropriate.              *
+ *                                                                        *
+ * Permission to use, copy, modify and distribute this software and its   *
+ * documentation strictly for non-commercial purposes is hereby granted   *
+ * without fee, provided that the above copyright notice appears in all   *
+ * copies and that both the copyright notice and this permission notice   *
+ * appear in the supporting documentation. The authors make no claims     *
+ * about the suitability of this software for any purpose. It is          *
+ * provided "as is" without express or implied warranty.                  *
+ **************************************************************************/
+
 // $Id$
+// $MpId: AliMpPadIteratorPtr.cxx,v 1.7 2006/05/24 13:58:29 ivana Exp $
 // Category: basic
-//
+
+//-----------------------------------------------------------------------------
 // Class AliMpPadIteratorPtr
 // --------------------------
 // Pointer to the virtual pad iterator;
 //
 // Included in AliRoot: 2003/05/02
 // Authors: David Guez, Ivana Hrivnacova; IPN Orsay
+//-----------------------------------------------------------------------------
 
 #include "AliMpPadIteratorPtr.h"
 #include "AliMpVPadIterator.h"
 
+/// \cond CLASSIMP
 ClassImp(AliMpPadIteratorPtr)
+/// \endcond
 
 //_____________________________________________________________________________
 AliMpPadIteratorPtr::AliMpPadIteratorPtr(AliMpVPadIterator* it)
   : fIterator(it)
-{}
-
-//_____________________________________________________________________________
-AliMpPadIteratorPtr::AliMpPadIteratorPtr(const AliMpPadIteratorPtr& right) 
-  : TObject(right) {
-// 
-  Fatal("AliMpPadIteratorPtr", "Copy constructor not provided.");
-}
-
-//_____________________________________________________________________________
-AliMpPadIteratorPtr::~AliMpPadIteratorPtr() {
-//
-  delete fIterator;
+{
+/// Standard constructor
 }
 
-// operators
-
 //_____________________________________________________________________________
-AliMpPadIteratorPtr& 
-AliMpPadIteratorPtr::operator=(const AliMpPadIteratorPtr& right)
+AliMpPadIteratorPtr::~AliMpPadIteratorPtr() 
 {
-  // check assignement to self
-  if (this == &right) return *this;
-
-  Fatal("operator =", "Assignement operator not provided.");
-    
-  return *this;  
-}    
+/// Destructor
 
+  delete fIterator;
+}