X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=TPC%2FAliDigitsArray.cxx;h=086c1adc754b33e96554faf1a92afe546e20d1e7;hb=4ab8985c1f7fbe9b9642049b922752f866ac00a2;hp=eeb6e39db9ba17bef4b566140e4e834b7f16f4e6;hpb=cc80f89ead2e03e663aa5c2e2330945097ba3ffd;p=u%2Fmrichter%2FAliRoot.git diff --git a/TPC/AliDigitsArray.cxx b/TPC/AliDigitsArray.cxx index eeb6e39db9b..086c1adc754 100644 --- a/TPC/AliDigitsArray.cxx +++ b/TPC/AliDigitsArray.cxx @@ -13,13 +13,7 @@ * provided "as is" without express or implied warranty. * **************************************************************************/ -/* -$Log$ -Revision 1.1.4.2 2000/04/10 11:37:42 kowal2 - -Digits handling in a new data structure - -*/ +/* $Id$ */ /////////////////////////////////////////////////////////////////////////////// // // @@ -33,7 +27,6 @@ Digits handling in a new data structure #include "TObject.h" #include "AliSegmentID.h" #include "TObjArray.h" -#include "AliSegmentArray.h" #include "TError.h" #include "AliDigits.h" @@ -46,13 +39,35 @@ ClassImp(AliDigitsArray) // AliDigitsArray::AliDigitsArray() + :AliSegmentArray(), + fParam(0) { - fParam = 0; + // + // default constructor + // } - +AliDigitsArray::AliDigitsArray(const AliDigitsArray ¶m) + :AliSegmentArray(), + fParam(0) +{ + // + // dummy + // + fParam = param.fParam; +} +// +AliDigitsArray & AliDigitsArray::operator =(const AliDigitsArray & param) +{ + // + // dummy + // + fParam = param.fParam; + return (*this); +} +// AliDigitsArray::~AliDigitsArray() { - if (fParam != 0) delete fParam; + // if (fParam != 0) delete fParam; } Bool_t AliDigitsArray::Setup(AliDetectorParam *param)