]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/mapping/AliMpSectorPainter.cxx
- Reordering includes and/or
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpSectorPainter.cxx
index 5390b9071f221f2deafa26e3fc0de26e6374d7bf..60004f7be92da0cb90f3cf86258f1f9ae08068b5 100755 (executable)
@@ -1,7 +1,31 @@
+/**************************************************************************
+ * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ *                                                                        *
+ * Author: The ALICE Off-line Project.                                    *
+ * Contributors are mentioned in the code where appropriate.              *
+ *                                                                        *
+ * Permission to use, copy, modify and distribute this software and its   *
+ * documentation strictly for non-commercial purposes is hereby granted   *
+ * without fee, provided that the above copyright notice appears in all   *
+ * copies and that both the copyright notice and this permission notice   *
+ * appear in the supporting documentation. The authors make no claims     *
+ * about the suitability of this software for any purpose. It is          *
+ * provided "as is" without express or implied warranty.                  *
+ **************************************************************************/
+
 // $Id$
+// $MpId: AliMpSectorPainter.cxx,v 1.6 2005/08/26 15:43:36 ivana Exp $
 //
+// Class AliMpSectorPainter
+// ------------------------
+// Class for drawing a sector into canvas
+// Included in AliRoot: 2003/05/02
 // Authors: David Guez, IPN Orsay
   
+#include <TVirtualX.h>
+#include <TPad.h>
+#include <TError.h>
+
 #include "AliMpSectorPainter.h"
 #include "AliMpGraphContext.h"
 #include "AliMpSector.h"
 #include "AliMpSubZone.h"
 #include "AliMpRow.h"
 #include "AliMpVRowSegment.h"
-//#include "AliMpZonePainter.h"
 
 ClassImp(AliMpSectorPainter)
 
 //_______________________________________________________________________
-  AliMpSectorPainter::AliMpSectorPainter()
+AliMpSectorPainter::AliMpSectorPainter()
   :AliMpVPainter(),
    fSector(0)
 {
-  // default dummy constructor
+  /// Default constructor
 }
 //_______________________________________________________________________
 AliMpSectorPainter::AliMpSectorPainter(AliMpSector *sector)
   :AliMpVPainter(),
    fSector(sector)
 {
-  // normal constructor 
+  /// Standard constructor 
+
+}
+
+//_____________________________________________________________________________
+AliMpSectorPainter::AliMpSectorPainter(const AliMpSectorPainter& right) 
+  : AliMpVPainter(right) 
+{  
+  /// Protected copy constructor (not provided)
 
+  Fatal("AliMpSectorPainter", "Copy constructor not provided.");
 }
+
+//_______________________________________________________________________
+AliMpSectorPainter::~AliMpSectorPainter()
+{
+  /// Destructor
+}
+
+//_____________________________________________________________________________
+AliMpSectorPainter& 
+AliMpSectorPainter::operator=(const AliMpSectorPainter& right)
+{
+  /// Assignment operator (not provided)
+
+  // check assignment to self
+  if (this == &right) return *this;
+
+  Fatal("operator =", "Assignment operator not provided.");
+    
+  return *this;  
+}    
+
 //_______________________________________________________________________
 void AliMpSectorPainter::DumpObject()
 {
-// Draw the owned object
-  fSector->Dump();
+//// Draw the owned object
 
+  fSector->Dump();
 }
+
 //_______________________________________________________________________
 TVector2 AliMpSectorPainter::GetPosition() const
 {
-// Get the owned object's position
+//// Get the owned object's position
 
   if (fSector->GetNofRows()<1) return TVector2(0.,0.);
   AliMpRow* row = fSector->GetRow(0);
@@ -63,10 +117,12 @@ TVector2 AliMpSectorPainter::GetPosition() const
   }
   return (ur+bl)/2.;
 }
+
 //_______________________________________________________________________
 TVector2 AliMpSectorPainter::GetDimensions() const
 {
-// Get the owned object's dimensions
+//// Get the owned object's dimensions
+
   if (fSector->GetNofRows()<1) return TVector2(0.,0.);
   AliMpRow* row = fSector->GetRow(0);
 
@@ -95,15 +151,14 @@ TVector2 AliMpSectorPainter::GetDimensions() const
 //_______________________________________________________________________
 void AliMpSectorPainter::Draw(Option_t *option)
 {
-// Draw the sector on the current pad
-// The first letter of <option> is treated as follows:
-// case "Z" : each zones are drawn separately
-// case "R" : each rows are drawn separately
-// case ""  : the whole sector is drawn at once
-// in both cases, the rest of the option is passed
-// as argument to the Draw function of respectively
-// zone or row objects.
-// ---
+/// Draw the sector on the current pad
+/// The first letter of <option> is treated as follows:
+/// - case "Z" : each zones are drawn separately
+/// - case "R" : each rows are drawn separately
+/// - case ""  : the whole sector is drawn at once
+/// in both cases, the rest of the option is passed
+/// as argument to the Draw function of respectively
+/// zone or row objects.
 
   AliMpGraphContext *gr = AliMpGraphContext::Instance();
   if (!fSector) return;
@@ -161,12 +216,11 @@ void AliMpSectorPainter::Draw(Option_t *option)
   gr->Pop();
 }
 
-
-
 //_______________________________________________________________________
-void AliMpSectorPainter::Paint(Option_t *option)
+void AliMpSectorPainter::Paint(Option_t* /*option*/)
 {
-// Paint the object
+//// Paint the object
+
   AliMpGraphContext *gr = AliMpGraphContext::Instance();
   if (!fSector) return;
   if (fSector->GetNofRows()<1) return;
@@ -191,8 +245,8 @@ void AliMpSectorPainter::Paint(Option_t *option)
                   pos.X()+dim.X(),pos.Y()+dim.Y());
          
     if (iRow>0){
-      gPad->DrawLine(pos.X()-dim.X(),pos.Y()-dim.Y(),lx1,pos.Y()-dim.Y());
-      gPad->DrawLine(pos.X()+dim.X(),pos.Y()-dim.Y(),lx2,pos.Y()-dim.Y());
+      gPad->PaintLine(pos.X()-dim.X(),pos.Y()-dim.Y(),lx1,pos.Y()-dim.Y());
+      gPad->PaintLine(pos.X()+dim.X(),pos.Y()-dim.Y(),lx2,pos.Y()-dim.Y());
     }
     lx1=pos.X()-dim.X();
     lx2=pos.X()+dim.X();
@@ -203,12 +257,12 @@ void AliMpSectorPainter::Paint(Option_t *option)
   AliMpRow *row = fSector->GetRow(0);
   TVector2 pos,dim;
   gr->RealToPad(row->Position(),row->Dimensions(),pos,dim);
-  gPad->DrawLine(pos.X()-dim.X(),pos.Y()-dim.Y(),
+  gPad->PaintLine(pos.X()-dim.X(),pos.Y()-dim.Y(),
                 pos.X()+dim.X(),pos.Y()-dim.Y());
   
   row = fSector->GetRow(fSector->GetNofRows()-1);
   gr->RealToPad(row->Position(),row->Dimensions(),pos,dim);
-  gPad->DrawLine(pos.X()-dim.X(),pos.Y()+dim.Y(),
+  gPad->PaintLine(pos.X()-dim.X(),pos.Y()+dim.Y(),
                 pos.X()+dim.X(),pos.Y()+dim.Y());
 
   gr->Pop();