]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - FASTSIM/AliMUONFastTrackingEntry.cxx
Do not include from subdirectories
[u/mrichter/AliRoot.git] / FASTSIM / AliMUONFastTrackingEntry.cxx
index b10f67f0fc03746e8c59be68039563e348a75833..b3db221b9f27d851bd54bc023e88aae8fbfb4d70 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/*
-$Log$
-Revision 1.1.2.1  2003/04/15 15:57:31  hristov
-Merging with v3-09-08
+/* $Id$ */
 
-Revision 1.1  2003/01/07 08:41:02  morsch
-First commit.
+#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;
+    }
+  }  
+}
 
-#include "AliMUONFastTrackingEntry.h"
 ClassImp(AliMUONFastTrackingEntry)