]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - FASTSIM/AliFastMuonTrackingRes.cxx
EffC++ warning corrected.
[u/mrichter/AliRoot.git] / FASTSIM / AliFastMuonTrackingRes.cxx
index 8748f6da07c4b85582452cec9d7a65f54a56e088..c3bd5136423be03958b33745185cc812a48a2923 100644 (file)
@@ -31,14 +31,19 @@ ClassImp(AliFastMuonTrackingRes)
 
 
 AliFastMuonTrackingRes::AliFastMuonTrackingRes() :
-    AliFastResponse("Resolution", "Muon Tracking Resolution")
+    AliFastResponse("Resolution", "Muon Tracking Resolution"),
+    fBackground(0.),
+    fCharge(1.),
+    fFastTracking(0)
 {
-// Deafault constructor
-    SetBackground();
+// Default constructor
 }
 
 AliFastMuonTrackingRes::AliFastMuonTrackingRes(const AliFastMuonTrackingRes & res)
-    :AliFastResponse(res)
+    :AliFastResponse(res),
+    fBackground(0.),
+    fCharge(1.),
+    fFastTracking(0)
 {
 // Copy constructor
     res.Copy(*this);