]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/mapping/AliMpVPadRowSegment.cxx
Fix for the problem during PbPb run of Nov 2010 (Indra)
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpVPadRowSegment.cxx
index 2672bcf4aebd53125da0110812cc0ea301b599a9..b8ccc00e2aba1be15d90464a8584eeb0ca13a84e 100755 (executable)
  **************************************************************************/
 
 // $Id$
-// $MpId: AliMpVPadRowSegment.cxx,v 1.5 2005/08/26 15:43:36 ivana Exp $
+// $MpId: AliMpVPadRowSegment.cxx,v 1.7 2006/05/24 13:58:46 ivana Exp $
 // Category: sector
-//
+
+//-----------------------------------------------------------------------------
 // Class AliMpVPadRowSegment
 // --------------------
 // The abstract base class for a pad row segment composed of the 
 // the identic pads.
 // Included in AliRoot: 2003/05/02
 // Authors: David Guez, Ivana Hrivnacova; IPN Orsay
-
-#include <TError.h>
+//-----------------------------------------------------------------------------
 
 #include "AliMpVPadRowSegment.h"
 #include "AliMpPadRow.h"
 #include "AliMpMotif.h"
 #include "AliMpMotifType.h"
 
+/// \cond CLASSIMP
 ClassImp(AliMpVPadRowSegment)
+/// \endcond
 
 //_____________________________________________________________________________
 AliMpVPadRowSegment::AliMpVPadRowSegment(AliMpPadRow* padRow, AliMpMotif* motif, 
@@ -58,39 +60,12 @@ AliMpVPadRowSegment::AliMpVPadRowSegment()
 /// Default contructor 
 }
 
-//_____________________________________________________________________________
-AliMpVPadRowSegment::AliMpVPadRowSegment(const AliMpVPadRowSegment& right) 
-  : TObject(right) 
-{
-/// Protected copy constructor (not provided) 
-
-  Fatal("AliMpVPadRowSegment", "Copy constructor not provided.");
-}
-
 //_____________________________________________________________________________
 AliMpVPadRowSegment::~AliMpVPadRowSegment() 
 {
 /// Destructor   
 }
 
-//
-// operators
-//
-
-//_____________________________________________________________________________
-AliMpVPadRowSegment& 
-AliMpVPadRowSegment::operator=(const AliMpVPadRowSegment& right)
-{
-/// Protected assignment operator (not provided)
-
-  // check assignment to self
-  if (this == &right) return *this;
-
-  Fatal("operator =", "Assignment operator not provided.");
-    
-  return *this;  
-}    
-
 //
 // public methods  
 //
@@ -100,7 +75,7 @@ Double_t  AliMpVPadRowSegment::HalfSizeY() const
 {
 /// Return the size in y of this row segment.
 
-  return fMotif->GetPadDimensions().Y();
+  return fMotif->GetPadDimensionY();
 }
 
 //_____________________________________________________________________________