// @(#)root/g3d:$Name: $:$Id: TMarker3DBox.cxx,v 1.11 2004/09/24 08:21:18 brun Exp $ // Author: Rene Brun , Olivier Couet 31/10/97 /************************************************************************* * Copyright (C) 1995-2004, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #include "Riostream.h" #include "TROOT.h" #include "TView.h" #include "TMarker3DBox.h" #include "TVirtualPad.h" #include "TH1.h" #include "TH3.h" #include "TFile.h" #include "TBuffer3D.h" #include "TGeometry.h" ClassImp(TMarker3DBox) //______________________________________________________________________________ // Marker3DBox is a special 3-D marker designed for event display. // It has the following parameters: // fX; X coordinate of the center of the box // fY; Y coordinate of the center of the box // fZ; Z coordinate of the center of the box // fDx; half length in X // fDy; half length in Y // fDz; half length in Z // fTheta; Angle of box z axis with respect to main Z axis // fPhi; Angle of box x axis with respect to main Xaxis // fRefObject; A reference to an object //
//______________________________________________________________________________
TMarker3DBox::TMarker3DBox()
{
// Marker3DBox default constructor
fRefObject = 0;
fDx = 1;
fDy = 1;
fDz = 1;
fX = 0;
fY = 0;
fZ = 0;
fTheta = 0;
fPhi = 0;
}
//______________________________________________________________________________
TMarker3DBox::TMarker3DBox( Float_t x, Float_t y, Float_t z,
Float_t dx, Float_t dy, Float_t dz,
Float_t theta, Float_t phi)
:TAttLine(1,1,1), TAttFill(1,0)
{
// Marker3DBox normal constructor
fDx = dx;
fDy = dy;
fDz = dz;
fX = x;
fY = y;
fZ = z;
fTheta = theta;
fPhi = phi;
fRefObject = 0;
}
//______________________________________________________________________________
TMarker3DBox::~TMarker3DBox()
{
// Marker3DBox shape default destructor
}
//______________________________________________________________________________
Int_t TMarker3DBox::DistancetoPrimitive(Int_t px, Int_t py)
{
// Compute distance from point px,py to a Marker3DBox
//
// Compute the closest distance of approach from point px,py to each corner
// point of the Marker3DBox.
const Int_t numPoints = 8;
Int_t dist = 9999;
Double_t points[3*numPoints];
TView *view = gPad->GetView();
if (!view) return dist;
const Int_t seg1[12] = {0,1,2,3,4,5,6,7,0,1,2,3};
const Int_t seg2[12] = {1,2,3,0,5,6,7,4,4,5,6,7};
SetPoints(points);
Int_t i, i1, i2, dsegment;
Double_t x1,y1,x2,y2;
Double_t xndc[3];
for (i = 0; i < 12; i++) {
i1 = 3*seg1[i];
view->WCtoNDC(&points[i1], xndc);
x1 = xndc[0];
y1 = xndc[1];
i2 = 3*seg2[i];
view->WCtoNDC(&points[i2], xndc);
x2 = xndc[0];
y2 = xndc[1];
dsegment = DistancetoLine(px,py,x1,y1,x2,y2);
if (dsegment < dist) dist = dsegment;
}
if (dist < 5) {
gPad->SetCursor(kCross);
if (fRefObject) {gPad->SetSelected(fRefObject); return 0;}
}
return dist;
}
//______________________________________________________________________________
void TMarker3DBox::ExecuteEvent(Int_t event, Int_t px, Int_t py)
{
// Execute action corresponding to one event
//
// This member function must be implemented to realize the action
// corresponding to the mouse click on the object in the window
if (gPad->GetView()) gPad->GetView()->ExecuteRotateView(event, px, py);
}
//______________________________________________________________________________
void TMarker3DBox::Paint(Option_t *option)
{
// Paint this 3-D box marker with its current attributes
Int_t NbPnts = 8;
Int_t NbSegs = 12;
Int_t NbPols = 6;
TBuffer3D *buff = gPad->AllocateBuffer3D(3*NbPnts, 3*NbSegs, 6*NbPols);
if (!buff) return;
buff->fType = TBuffer3D::kM3DBOX;
buff->fId = this;
// Fill gPad->fBuffer3D. Points coordinates are in Master space
buff->fNbPnts = NbPnts;
buff->fNbSegs = NbSegs;
buff->fNbPols = NbPols;
// In case of option "size" it is not necessary to fill the buffer
if (buff->fOption == TBuffer3D::kSIZE) {
buff->Paint(option);
return;
}
SetPoints(buff->fPnts);
if (gGeometry) {
Double_t dlocal[3];
Double_t dmaster[3];
for (Int_t j=0; j<buff->fNbPnts; j++) {
dlocal[0] = buff->fPnts[3*j];
dlocal[1] = buff->fPnts[3*j+1];
dlocal[2] = buff->fPnts[3*j+2];
gGeometry->Local2Master(&dlocal[0],&dmaster[0]);
buff->fPnts[3*j] = dmaster[0];
buff->fPnts[3*j+1] = dmaster[1];
buff->fPnts[3*j+2] = dmaster[2];
}
}
// Basic colors: 0, 1, ... 7
buff->fColor = GetLineColor();
Int_t c = (((buff->fColor) %8) -1) * 4;
if (c < 0) c = 0;
buff->fSegs[ 0] = c ; buff->fSegs[ 1] = 0 ; buff->fSegs[ 2] = 1;
buff->fSegs[ 3] = c+1 ; buff->fSegs[ 4] = 1 ; buff->fSegs[ 5] = 2;
buff->fSegs[ 6] = c+1 ; buff->fSegs[ 7] = 2 ; buff->fSegs[ 8] = 3;
buff->fSegs[ 9] = c ; buff->fSegs[10] = 3 ; buff->fSegs[11] = 0;
buff->fSegs[12] = c+2 ; buff->fSegs[13] = 4 ; buff->fSegs[14] = 5;
buff->fSegs[15] = c+2 ; buff->fSegs[16] = 5 ; buff->fSegs[17] = 6;
buff->fSegs[18] = c+3 ; buff->fSegs[19] = 6 ; buff->fSegs[20] = 7;
buff->fSegs[21] = c+3 ; buff->fSegs[22] = 7 ; buff->fSegs[23] = 4;
buff->fSegs[24] = c ; buff->fSegs[25] = 0 ; buff->fSegs[26] = 4;
buff->fSegs[27] = c+2 ; buff->fSegs[28] = 1 ; buff->fSegs[29] = 5;
buff->fSegs[30] = c+1 ; buff->fSegs[31] = 2 ; buff->fSegs[32] = 6;
buff->fSegs[33] = c+3 ; buff->fSegs[34] = 3 ; buff->fSegs[35] = 7;
buff->fPols[ 0] = c ; buff->fPols[ 1] = 4 ; buff->fPols[ 2] = 0;
buff->fPols[ 3] = 9 ; buff->fPols[ 4] = 4 ; buff->fPols[ 5] = 8;
buff->fPols[ 6] = c+1 ; buff->fPols[ 7] = 4 ; buff->fPols[ 8] = 1;
buff->fPols[ 9] = 10 ; buff->fPols[10] = 5 ; buff->fPols[11] = 9;
buff->fPols[12] = c ; buff->fPols[13] = 4 ; buff->fPols[14] = 2;
buff->fPols[15] = 11 ; buff->fPols[16] = 6 ; buff->fPols[17] = 10;
buff->fPols[18] = c+1 ; buff->fPols[19] = 4 ; buff->fPols[20] = 3;
buff->fPols[21] = 8 ; buff->fPols[22] = 7 ; buff->fPols[23] = 11;
buff->fPols[24] = c+2 ; buff->fPols[25] = 4 ; buff->fPols[26] = 0;
buff->fPols[27] = 3 ; buff->fPols[28] = 2 ; buff->fPols[29] = 1;
buff->fPols[30] = c+3 ; buff->fPols[31] = 4 ; buff->fPols[32] = 4;
buff->fPols[33] = 5 ; buff->fPols[34] = 6 ; buff->fPols[35] = 7;
// Paint gPad->fBuffer3D
TAttLine::Modify();
TAttFill::Modify();
buff->Paint(option);
}
//______________________________________________________________________________
void TMarker3DBox::PaintH3(TH1 *h, Option_t *option)
{
// Paint 3-d histogram h with marker3dboxes
Int_t bin,ix,iy,iz;
Double_t xmin,xmax,ymin,ymax,zmin,zmax,wmin,wmax,w;
TAxis *xaxis = h->GetXaxis();
TAxis *yaxis = h->GetYaxis();
TAxis *zaxis = h->GetZaxis();
//compute min and max of all cells
wmin = wmax = 0;
for (iz=zaxis->GetFirst();iz<=zaxis->GetLast();iz++) {
for (iy=yaxis->GetFirst();iy<=yaxis->GetLast();iy++) {
for (ix=xaxis->GetFirst();ix<=xaxis->GetLast();ix++) {
bin = h->GetBin(ix,iy,iz);
w = h->GetBinContent(bin);
if (w > wmax) wmax = w;
if (w < wmin) wmin = w;
}
}
}
//Create or modify 3-d view object
TView *view = gPad->GetView();
if (!view) {
gPad->Range(-1,-1,1,1);
view = new TView(1);
}
view->SetRange(xaxis->GetBinLowEdge(xaxis->GetFirst()),
yaxis->GetBinLowEdge(yaxis->GetFirst()),
zaxis->GetBinLowEdge(zaxis->GetFirst()),
xaxis->GetBinUpEdge(xaxis->GetLast()),
yaxis->GetBinUpEdge(yaxis->GetLast()),
zaxis->GetBinUpEdge(zaxis->GetLast()));
//Draw TMarker3DBox with size proportional to cell content
TMarker3DBox m3;
m3.SetRefObject(h);
m3.SetDirection(0,0);
m3.SetLineColor(h->GetMarkerColor());
Double_t scale;
for (ix=xaxis->GetFirst();ix<=xaxis->GetLast();ix++) {
xmin = h->GetXaxis()->GetBinLowEdge(ix);
xmax = xmin + h->GetXaxis()->GetBinWidth(ix);
for (iy=yaxis->GetFirst();iy<=yaxis->GetLast();iy++) {
ymin = h->GetYaxis()->GetBinLowEdge(iy);
ymax = ymin + h->GetYaxis()->GetBinWidth(iy);
for (iz=zaxis->GetFirst();iz<=zaxis->GetLast();iz++) {
zmin = h->GetZaxis()->GetBinLowEdge(iz);
zmax = zmin + h->GetZaxis()->GetBinWidth(iz);
bin = h->GetBin(ix,iy,iz);
w = h->GetBinContent(bin);
if (w == 0) continue;
scale = (w-wmin)/(wmax-wmin);
m3.SetPosition(0.5*(xmin+xmax),0.5*(ymin+ymax),0.5*(zmin+zmax));
m3.SetSize(scale*(xmax-xmin),scale*(ymax-ymin),scale*(zmax-zmin));
m3.Paint(option);
}
}
}
}
//______________________________________________________________________________
void TMarker3DBox::SavePrimitive(ofstream &out, Option_t *)
{
// Save primitive as a C++ statement(s) on output stream out
out<<" "<<endl;
if (gROOT->ClassSaved(TMarker3DBox::Class())) {
out<<" ";
} else {
out<<" TMarker3DBox *";
}
out<<"marker3DBox = new TMarker3DBox("<<fX<<","
<<fY<<","
<<fZ<<","
<<fDx<<","
<<fDy<<","
<<fDz<<","
<<fTheta<<","
<<fPhi<<");"<<endl;
SaveLineAttributes(out,"marker3DBox",1,1,1);
SaveFillAttributes(out,"marker3DBox",1,0);
out<<" marker3DBox->Draw();"<<endl;
}
//______________________________________________________________________________
void TMarker3DBox::SetDirection(Float_t theta, Float_t phi)
{
fTheta = theta;
fPhi = phi;
}
//______________________________________________________________________________
void TMarker3DBox::SetSize(Float_t dx, Float_t dy, Float_t dz)
{
fDx = dx;
fDy = dy;
fDz = dz;
}
//______________________________________________________________________________
void TMarker3DBox::SetPosition(Float_t x, Float_t y, Float_t z)
{
fX = x;
fY = y;
fZ = z;
}
//______________________________________________________________________________
void TMarker3DBox::SetPoints(Double_t *buff)
{
if (buff) {
buff[ 0] = -fDx ; buff[ 1] = -fDy ; buff[ 2] = -fDz;
buff[ 3] = -fDx ; buff[ 4] = fDy ; buff[ 5] = -fDz;
buff[ 6] = fDx ; buff[ 7] = fDy ; buff[ 8] = -fDz;
buff[ 9] = fDx ; buff[10] = -fDy ; buff[11] = -fDz;
buff[12] = -fDx ; buff[13] = -fDy ; buff[14] = fDz;
buff[15] = -fDx ; buff[16] = fDy ; buff[17] = fDz;
buff[18] = fDx ; buff[19] = fDy ; buff[20] = fDz;
buff[21] = fDx ; buff[22] = -fDy ; buff[23] = fDz;
Double_t x, y, z;
const Double_t kPI = TMath::Pi();
Double_t theta = fTheta*kPI/180;
Double_t phi = fPhi*kPI/180;
Double_t sinth = TMath::Sin(theta);
Double_t costh = TMath::Cos(theta);
Double_t sinfi = TMath::Sin(phi);
Double_t cosfi = TMath::Cos(phi);
//
// Matrix to convert from fruit frame to master frame
//
Double_t M[9];
M[0] = costh * cosfi; M[1] = -sinfi; M[2] = sinth*cosfi;
M[3] = costh * sinfi; M[4] = cosfi; M[5] = sinth*sinfi;
M[6] = -sinth; M[7] = 0; M[8] = costh;
for (Int_t i = 0; i < 8; i++) {
x = buff[3*i];
y = buff[3*i+1];
z = buff[3*i+2];
buff[3*i] = fX + M[0] * x + M[1] * y + M[2] * z;
buff[3*i+1] = fY + M[3] * x + M[4] * y + M[5] * z;
buff[3*i+2] = fZ + M[6] * x + M[7] * y + M[8] * z;
}
}
}
//______________________________________________________________________________
void TMarker3DBox::Streamer(TBuffer &R__b)
{
// Stream an object of class TMarker3DBox.
if (R__b.IsReading()) {
UInt_t R__s, R__c;
Version_t R__v = R__b.ReadVersion(&R__s, &R__c);
if (R__v > 1) {
TMarker3DBox::Class()->ReadBuffer(R__b, this, R__v, R__s, R__c);
return;
}
//====process old versions before automatic schema evolution
TObject::Streamer(R__b);
TAttLine::Streamer(R__b);
TAttFill::Streamer(R__b);
TFile *file = (TFile*)R__b.GetParent();
if (file) {
if (file->GetVersion() > 22300) TAtt3D::Streamer(R__b);
} else {
TAtt3D::Streamer(R__b);
}
R__b >> fX;
R__b >> fY;
R__b >> fZ;
R__b >> fDx;
R__b >> fDy;
R__b >> fDz;
R__b >> fTheta;
R__b >> fPhi;
R__b >> fRefObject;
R__b.CheckByteCount(R__s, R__c, TMarker3DBox::IsA());
//====end of old versions
} else {
TMarker3DBox::Class()->WriteBuffer(R__b,this);
}
}