]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - FASTSIM/AliFastMuonTrackingAcc.cxx
bug fix in the vertex selection
[u/mrichter/AliRoot.git] / FASTSIM / AliFastMuonTrackingAcc.cxx
index 3712c170a9f4cca75912ae4a1eb078017f32707d..dd5462ede07e2858d51ef76ddc8e7e3ca796fa56 100644 (file)
@@ -22,6 +22,8 @@
 // Author: Andreas Morsch
 // andreas.morsch@cern.ch 
 
+#include <TMath.h>
+
 #include "AliFastMuonTrackingAcc.h"
 #include "AliMUONFastTracking.h"
 
@@ -29,13 +31,19 @@ ClassImp(AliFastMuonTrackingAcc)
 
 
 AliFastMuonTrackingAcc::AliFastMuonTrackingAcc() :
-    AliFastResponse("Acceptance", "Muon Tracking Acceptance")
+    AliFastResponse("Acceptance", "Muon Tracking Acceptance"),
+    fBackground(1.),
+    fCharge(1.),
+    fFastTracking(0)
 {
-    SetBackground();
+    // Default Constructor
 }
 
 AliFastMuonTrackingAcc::AliFastMuonTrackingAcc(const AliFastMuonTrackingAcc & acc)
-    :AliFastResponse(acc)
+    :AliFastResponse(acc),
+     fBackground(1.),
+     fCharge(1.),
+     fFastTracking(0)
 {
 // Copy constructor
     acc.Copy(*this);