]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCtrackPid.cxx
Coverity fixes (Jens)
[u/mrichter/AliRoot.git] / TPC / AliTPCtrackPid.cxx
index 2d915d96007effe065f29f8214b31f5e69ac73c9..5a01514491d6ee4c4594839641b042a2445dee79 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/*
-$Log$
-*/
+/* $Id$ */
+
+//
+// Class to determine the particle ID for TPC tracks
+// More comments and a description of the class will be added here
+// missing description
+// as above
+// as above
 
 #include "AliTPCtrackPid.h"
 
 ClassImp(AliTPCtrackPid)
 
 AliTPCtrackPid::AliTPCtrackPid()
+  :TObject(),
+     fWpi(0.),     
+     fWk(0.),      
+     fWp(0.),      
+     fSignal(0.),  
+     fMom(0.),     
+     fPhi(0.),     
+     fLam(0.),     
+     fPcode(0),   
+     fLabel(0),
+     fGSignal(0.), 
+     fGMom(0.),    
+     fGpx(0.),     
+     fGpy(0.),     
+     fGpz(0.),     
+     fGx(0.),      
+     fGy(0.),      
+     fGz(0.),      
+     fGcode(0),   
+     fGlab(0)       
 {
-    fWpi=fWk=fWp=0.;
-    fPcode=0; fMom=0.; fSignal=0;
+  //
+  // default costructor
+  //
 }