/************************************************************************** * 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: AliMpZonePainter.cxx,v 1.6 2005/08/26 15:43:36 ivana Exp $ // Category: graphics // // Class AliMpZonePainter // ---------------------- // Class for drawing a zone into canvas // Included in AliRoot: 2003/05/02 // Authors: David Guez, IPN Orsay #include #include #include #include "AliMpZonePainter.h" #include "AliMpGraphContext.h" #include "AliMpZone.h" #include "AliMpSubZone.h" #include "AliMpVRowSegment.h" ClassImp(AliMpZonePainter) //_______________________________________________________________________ AliMpZonePainter::AliMpZonePainter() : AliMpVPainter(), fZone(0) { /// Default constructor } //_______________________________________________________________________ AliMpZonePainter::AliMpZonePainter(AliMpZone *zone) : AliMpVPainter(), fZone(zone) { /// Standard constructor } //_____________________________________________________________________________ AliMpZonePainter::AliMpZonePainter(const AliMpZonePainter& right) : AliMpVPainter(right) { /// Protected copy constructor (not provided) Fatal("AliMpZonePainter", "Copy constructor not provided."); } //_______________________________________________________________________ AliMpZonePainter::~AliMpZonePainter() { /// Destructor } //_____________________________________________________________________________ AliMpZonePainter& AliMpZonePainter::operator=(const AliMpZonePainter& right) { /// Assignment operator (not provided) // check assignment to self if (this == &right) return *this; Fatal("operator =", "Assignment operator not provided."); return *this; } //_______________________________________________________________________ Int_t AliMpZonePainter::DistancetoPrimitive(Int_t x, Int_t y) { /// Distance to the nearest segment center if (x,y) is inside the zone /// 9999 otherwise if (fZone->GetNofSubZones()<1) return 9999; AliMpGraphContext *gr = AliMpGraphContext::Instance(); gr->Push(); InitGraphContext(); TVector2 point = TVector2(gPad->AbsPixeltoX(x), gPad->AbsPixeltoY(y)); Double_t res=9999.; for (Int_t isub=0;isubGetNofSubZones();++isub){ // for each sub-zones AliMpSubZone* sub = fZone->GetSubZone(isub); for (Int_t iseg=0;isegGetNofRowSegments();++iseg){ //for each row segments AliMpVRowSegment* seg = sub->GetRowSegment(iseg); TVector2 pos,dim; gr->RealToPad(seg->Position(),seg->Dimensions(),pos,dim); if ( IsInside(point,pos,dim) ){ Double_t value = (point-pos).Mod(); if (valuePop(); return (Int_t)res; } //_______________________________________________________________________ void AliMpZonePainter::DumpObject() { /// Dump the owned object fZone->Dump(); } //_______________________________________________________________________ TVector2 AliMpZonePainter::GetPosition() const { //// Get the owned object's position if (fZone->GetNofSubZones()<1) return TVector2(0.,0.); TVector2 bl(9999,9999),ur(-9999,-9999); for (Int_t isub=0;isubGetNofSubZones();++isub){ // for each sub-zones AliMpSubZone* sub = fZone->GetSubZone(isub); for (Int_t iseg=0;isegGetNofRowSegments();++iseg){ //for each row segments AliMpVRowSegment* seg = sub->GetRowSegment(iseg); // update the bottom-left corner if (bl.X()>seg->Position().X()-seg->Dimensions().X()) bl.Set(seg->Position().X()-seg->Dimensions().X(),bl.Y()); if (bl.Y()>seg->Position().Y()-seg->Dimensions().Y()) bl.Set(bl.X(),seg->Position().Y()-seg->Dimensions().Y()); // update the upper-right corner if (ur.X()Position().X()+seg->Dimensions().X()) ur.Set(seg->Position().X()+seg->Dimensions().X(),ur.Y()); if (ur.Y()Position().Y()+seg->Dimensions().Y()) ur.Set(ur.X(),seg->Position().Y()+seg->Dimensions().Y()); } //iseg } //isub return (ur+bl)/2.; } //_______________________________________________________________________ TVector2 AliMpZonePainter::GetDimensions() const { //// Get the owned object's dimensions if (fZone->GetNofSubZones()<1) return TVector2(0.,0.); TVector2 bl(9999,9999),ur(-9999,-9999); for (Int_t isub=0;isubGetNofSubZones();++isub){ // for each sub-zones AliMpSubZone* sub = fZone->GetSubZone(isub); for (Int_t iseg=0;isegGetNofRowSegments();++iseg){ //for each row segments AliMpVRowSegment* seg = sub->GetRowSegment(iseg); // update the bottom-left corner if (bl.X()>seg->Position().X()-seg->Dimensions().X()) bl.Set(seg->Position().X()-seg->Dimensions().X(),bl.Y()); if (bl.Y()>seg->Position().Y()-seg->Dimensions().Y()) bl.Set(bl.X(),seg->Position().Y()-seg->Dimensions().Y()); // update the upper-right corner if (ur.X()Position().X()+seg->Dimensions().X()) ur.Set(seg->Position().X()+seg->Dimensions().X(),ur.Y()); if (ur.Y()Position().Y()+seg->Dimensions().Y()) ur.Set(ur.X(),seg->Position().Y()+seg->Dimensions().Y()); } //iseg } //isub return (ur-bl)/2.; } //_______________________________________________________________________ void AliMpZonePainter::Draw(Option_t *option) { /// Draw the sector on the current pad /// The first letter of