]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - FASTSIM/AliMUONFastTrackingEntry.cxx
Adding Domenico Colella as responsible for SPD part in TRI pp
[u/mrichter/AliRoot.git] / FASTSIM / AliMUONFastTrackingEntry.cxx
index 43208259a8e15c09048f2f287c4a4b0db2ecc35c..b3db221b9f27d851bd54bc023e88aae8fbfb4d70 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/*
-$Log$
-*/
+/* $Id$ */
 
 #include "AliMUONFastTrackingEntry.h"
+
+AliMUONFastTrackingEntry::AliMUONFastTrackingEntry():
+    fP(0.),
+    fTheta(0.),
+    fPhi(0.),
+    fMeanp(0.),
+    fMeantheta(0.),
+    fMeanphi(0.),
+    fSigmap(0.),
+    fSigmatheta(0.),
+    fSigmaphi(0.),
+    fSigma1p(0.),
+    fChi2p(0.),
+    fChi2theta(0.),
+    fChi2phi(0.),
+    fNormG2(0.),
+    fMeanG2(0.),
+    fSigmaG2(0.)
+{ 
+// Default constructor
+  for (Int_t i=0; i<5; i++) { 
+    for (Int_t j=0; j<3; j++) { 
+      fAcc[i][j] = 0;
+      fEff[i][j] = 0;
+    }
+  }  
+}
+
 ClassImp(AliMUONFastTrackingEntry)