]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Bad operator= implementation on gcc-3.2 (Yves SCHUTZ)
authorgamez <gamez@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 9 Oct 2002 15:00:17 +0000 (15:00 +0000)
committergamez <gamez@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 9 Oct 2002 15:00:17 +0000 (15:00 +0000)
CRT/AliCRThit.cxx

index b3201659aea137da97530e4a62788621ff4c55b1..d8cbbae0105081ffa5b488d0cbdbe002dab2899c 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.3  2002/10/07 11:19:18  gamez
+Changes requested by coding conventions
+
 Revision 1.2  2002/07/25 21:27:22  gamez
 Variables renamed to avoid floating exceptions
 
@@ -88,23 +91,23 @@ AliCRThit& AliCRThit::operator= (const AliCRThit & hit)
    // aisngment operator.
    //
 
-  fId     = hit.fId;
-  fX      = hit.fX;
-  fY      = hit.fY;
-  fZ      = hit.fZ;
-  fPx     = hit.fPx;
-  fPy     = hit.fPy;
-  fPz     = hit.fPz;
-  fMedium = hit.fMedium;
-  fELoss  = hit.fELoss;
-  fCRTh = hit.fCRTh;
-  fCRTMod = hit.fCRTMod;
-  fCRTMag = hit.fCRTMag;
-  fCRTRICH = hit.fCRTRICH;
-  fCRTTPC = hit.fCRTTPC;
-
-  fCopy = hit.fCopy;
-  fVolume = hit.fVolume;
+  //fId     = hit.fId;
+  //fX      = hit.fX;
+  //fY      = hit.fY;
+  //fZ      = hit.fZ;
+  //fPx     = hit.fPx;
+  //fPy     = hit.fPy;
+  //fPz     = hit.fPz;
+  //fMedium = hit.fMedium;
+  //fELoss  = hit.fELoss;
+  //fCRTh = hit.fCRTh;
+  //fCRTMod = hit.fCRTMod;
+  //fCRTMag = hit.fCRTMag;
+  //fCRTRICH = hit.fCRTRICH;
+  //fCRTTPC = hit.fCRTTPC;
+
+  //fCopy = hit.fCopy;
+  //fVolume = hit.fVolume;
 
   return *this;
 }