]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCtrackPid.cxx
compilation warnings fixed
[u/mrichter/AliRoot.git] / TPC / AliTPCtrackPid.cxx
index e55be39e2ad1264cb04d58079449a55c6aeaf4a9..5a01514491d6ee4c4594839641b042a2445dee79 100644 (file)
 
 /* $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
+  //
 }