X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=MUON%2FAliMUONGeometryConstituent.cxx;h=ae8378518c6a944dfc81365cb1d235fa28d16801;hb=a0036e80febab1792c0e1afbe8512ab54b6bb89d;hp=88ef8c537e5c395f6ff15f868fa4699ec669ce04;hpb=692de412b81f16738d28897496efdbb2e9e1ba0a;p=u%2Fmrichter%2FAliRoot.git diff --git a/MUON/AliMUONGeometryConstituent.cxx b/MUON/AliMUONGeometryConstituent.cxx index 88ef8c537e5..ae8378518c6 100644 --- a/MUON/AliMUONGeometryConstituent.cxx +++ b/MUON/AliMUONGeometryConstituent.cxx @@ -14,19 +14,23 @@ **************************************************************************/ // $Id$ -// + +//----------------------------------------------------------------------------- // Class AliMUONGeometryConstituent // ----------------------------- // Helper class for definititon of an assembly of volumes. // Author: Ivana Hrivnacova, IPN Orsay // 23/01/2004 +//----------------------------------------------------------------------------- #include #include "AliMUONGeometryConstituent.h" #include "AliLog.h" +/// \cond CLASSIMP ClassImp(AliMUONGeometryConstituent) +/// \endcond //______________________________________________________________________________ AliMUONGeometryConstituent::AliMUONGeometryConstituent(const TString& name, @@ -34,7 +38,8 @@ AliMUONGeometryConstituent::AliMUONGeometryConstituent(const TString& name, : TNamed(name, name), fCopyNo(copyNo), fNpar(npar), - fParam(0) + fParam(0), + fTransformation(0) { /// Standard constructor for a constituent without translation & rotation @@ -134,17 +139,6 @@ AliMUONGeometryConstituent::AliMUONGeometryConstituent() /// Default constructor } - -//______________________________________________________________________________ -AliMUONGeometryConstituent::AliMUONGeometryConstituent( - const AliMUONGeometryConstituent& rhs) - : TNamed(rhs) -{ -/// Protected copy constructor - - AliFatal("Copy constructor is not implemented."); -} - //______________________________________________________________________________ AliMUONGeometryConstituent::~AliMUONGeometryConstituent() { @@ -153,18 +147,3 @@ AliMUONGeometryConstituent::~AliMUONGeometryConstituent() delete fTransformation; delete [] fParam; } - -//______________________________________________________________________________ -AliMUONGeometryConstituent& -AliMUONGeometryConstituent::operator = (const AliMUONGeometryConstituent& rhs) -{ -/// Protected assignment operator - - // check assignement to self - if (this == &rhs) return *this; - - AliFatal("Assignment operator is not implemented."); - - return *this; -} -