]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - FASTSIM/AliFastMuonTrackingEff.cxx
EffC++ warning corrected.
[u/mrichter/AliRoot.git] / FASTSIM / AliFastMuonTrackingEff.cxx
index ce1ff34acad7c209ab849d7b7edb2419db69de6f..208a357033cf44dda8bd39b6f997f85ded604cba 100644 (file)
@@ -29,15 +29,20 @@ ClassImp(AliFastMuonTrackingEff)
 
 
 AliFastMuonTrackingEff::AliFastMuonTrackingEff() :
-    AliFastResponse("Efficiency", "Muon Tracking Efficiency")
+    AliFastResponse("Efficiency", "Muon Tracking Efficiency"),
+    fBackground(1.),
+    fCharge(1.),
+    fFastTracking(0)
 {
 //
 // Constructor
-    SetBackground();
 }
 
 AliFastMuonTrackingEff::AliFastMuonTrackingEff(const AliFastMuonTrackingEff& eff)
-    :AliFastResponse(eff)
+    :AliFastResponse(eff),
+    fBackground(1.),
+    fCharge(1.),
+    fFastTracking(0)
 {
 // Copy constructor
     eff.Copy(*this);