]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - FASTSIM/AliMUONFastTrackingEntry.cxx
putting alice logo on the plots
[u/mrichter/AliRoot.git] / FASTSIM / AliMUONFastTrackingEntry.cxx
index dd6bcdd57c5e8e49529e3731526fbbcf008bc8ac..b3db221b9f27d851bd54bc023e88aae8fbfb4d70 100644 (file)
 /* $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)