]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFRawMap.cxx
Removing leftover return
[u/mrichter/AliRoot.git] / TOF / AliTOFRawMap.cxx
index 0d8ff497da62af961f5696c27e09f7724776452f..8e088785a57c9cdd56c5d1336d4b561c74e6883d 100644 (file)
@@ -74,52 +74,6 @@ AliTOFRawMap::AliTOFRawMap(TClonesArray *dig)://, AliTOFGeometry *tofGeom:
   Clear();
 }
 
-////////////////////////////////////////////////////////////////////////
-AliTOFRawMap::AliTOFRawMap(const AliTOFRawMap & rawMap) :
-  TObject(rawMap),
-  fNtrm(rawMap.fNtrm),
-  fNtrmChain(rawMap.fNtrmChain),
-  fNtdc(rawMap.fNtdc),
-  fNtdcChannel(rawMap.fNtdcChannel),
-  fRawData(rawMap.fRawData),
-  fMaxIndex(-1),
-  fRawMap(0x0)
-{
-//
-// Dummy copy constructor
-//
-
-  fMaxIndex = fNtrm*fNtrmChain*fNtdc*fNtdcChannel;
-  fRawMap = new Int_t[fMaxIndex];
-  for (Int_t i=0; i<fMaxIndex; i++)
-    fRawMap[i]=rawMap.fRawMap[i];
-
-}
-
-////////////////////////////////////////////////////////////////////////
-AliTOFRawMap & AliTOFRawMap::operator=(const AliTOFRawMap & rawMap)
-{
-//
-// Dummy copy constructor
-//
-
-  if (this == &rawMap)
-    return *this;
-
-  fNtrm=rawMap.fNtrm;
-  fNtrmChain=rawMap.fNtrmChain;
-  fNtdc=rawMap.fNtdc;
-  fNtdcChannel=rawMap.fNtdcChannel;
-  fRawData=rawMap.fRawData;
-  fMaxIndex=fNtrm*fNtrmChain*fNtdc*fNtdcChannel;
-  fRawMap = new Int_t[fMaxIndex];
-  for (Int_t i=0; i<fMaxIndex; i++)
-    fRawMap[i]=rawMap.fRawMap[i];
-  return *this;
-
-}
-
 ////////////////////////////////////////////////////////////////////////
 AliTOFRawMap::~AliTOFRawMap()
 {