]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONPixel.cxx
Formatting changes.
[u/mrichter/AliRoot.git] / MUON / AliMUONPixel.cxx
index 69fb91a08ff063bc4fd41589b87b3f6af9e2fb4a..6a815e2c201740203db07ef771eec307a9f6e5ae 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
+/* $Id$ */
+
+// -------------------------------------
+// Class AliMUONPixel
+// -------------------------------------
+// Basic object of the cluster / rec. point finder based 
+// on Expectation-Minimization approach (AZ cluster finder)
+// Author: Alexander Zinchenko, JINR Dubna
+
 #include "AliMUONPixel.h"
 
+/// \cond CLASSIMP
 ClassImp(AliMUONPixel) // Class implementation in ROOT context
+/// \endcond
+
+//_____________________________________________________________________________
+AliMUONPixel::AliMUONPixel()
+  : TObject(),
+    fCharge(0),
+    fFlag(0)
+{
+/// Default constructor
+  fXY[0] = fXY[1] = fSize[0] = fSize[1] = 0;
+} 
 
 //_____________________________________________________________________________
 AliMUONPixel::AliMUONPixel(Double_t xc, Double_t yc, Double_t wx, Double_t wy, Double_t charge)
+  : TObject(),
+    fCharge(charge),
+    fFlag(0)
 {
-  // Constructor
-  fXY[0] = xc; fXY[1] = yc; fSize[0] = wx; fSize[1] = wy; fCharge = charge;
+/// Constructor
+  fXY[0] = xc; fXY[1] = yc; fSize[0] = wx; fSize[1] = wy;
 }
 
 //_____________________________________________________________________________
 AliMUONPixel::~AliMUONPixel()
 {
-  // Destructor
+/// Destructor
 }
 
 //__________________________________________________________________________
 Int_t AliMUONPixel::Compare(const TObject* pixel) const
 {
-  // "Compare" function to sort with decreasing pixel charge.
-  // Returns -1 (0, +1) if charge of current pixel
-  // is greater than (equal to, less than) charge of pixel
+/// "Compare" function to sort with decreasing pixel charge.
+/// Returns -1 (0, +1) if charge of current pixel
+/// is greater than (equal to, less than) charge of pixel
   if (fCharge > ((AliMUONPixel*)pixel)->Charge()) return(-1);
   else if (fCharge == ((AliMUONPixel*)pixel)->Charge()) return( 0);
   else return(+1);
 }
+
+//__________________________________________________________________________
+void AliMUONPixel::Print(const char* /*opt*/) const
+{
+/// Print function
+  printf("%9.4f %9.4f %9.4f %9.4f %9.4f %1d\n", fXY[0], fXY[1], fSize[0], fSize[1], fCharge, fFlag);
+}