]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - FMD/AliFMDRecPoint.cxx
Bug fix in cut variation part
[u/mrichter/AliRoot.git] / FMD / AliFMDRecPoint.cxx
index cea8f0730e3e63ebc1209109e94dc1f61d1bd6b6..94d5b743881ab88e76d88f88797a82e3b190d284 100644 (file)
@@ -31,6 +31,8 @@
 #include <Riostream.h>         // ROOT_Riostream
 
 //____________________________________________________________________
+using std::cout;
+using std::endl;
 ClassImp(AliFMDRecPoint)
 #if 0
   ; // This is here to keep Emacs for indenting the next line
@@ -44,8 +46,11 @@ AliFMDRecPoint::AliFMDRecPoint()
     fStrip(0),
     fEta(0),
     fPhi(0),
-    fEdep(0)
-{}
+    fEdep(0),
+    fParticles(0)
+{
+  // CTOR 
+}
 
 //____________________________________________________________________
 AliFMDRecPoint::AliFMDRecPoint(UShort_t detector,  Char_t   ring, 
@@ -67,6 +72,7 @@ AliFMDRecPoint::AliFMDRecPoint(UShort_t detector,  Char_t   ring,
 const char*
 AliFMDRecPoint::GetName() const 
 { 
+  // Get the name 
   static TString n;
   n = Form("FMD%d%c[%2d,%3d]", fDetector,fRing,fSector,fStrip);
   return n.Data();
@@ -76,6 +82,7 @@ AliFMDRecPoint::GetName() const
 const char*
 AliFMDRecPoint::GetTitle() const 
 { 
+  // Get the title 
   static TString t;
   t = Form("%f (%f,%f)", fParticles, fEta, fPhi);
   return t.Data();