#include "TEveGeoNode.h"
#include "TEveManager.h"
#include "TEvePolygonSetProjected.h"
#include "TEveGeoShapeExtract.h"
#include "TROOT.h"
#include "TPad.h"
#include "TBuffer3D.h"
#include "TVirtualViewer3D.h"
#include "TColor.h"
#include "TFile.h"
#include "TGeoShape.h"
#include "TGeoVolume.h"
#include "TGeoNode.h"
#include "TGeoShapeAssembly.h"
#include "TGeoManager.h"
#include "TGeoMatrix.h"
#include "TVirtualGeoPainter.h"
ClassImp(TEveGeoNode)
TEveGeoNode::TEveGeoNode(TGeoNode* node) :
   TEveElement(),
   TObject(),
   fNode(node)
{
   
   
   char* l = (char*) dynamic_cast<TAttLine*>(node->GetVolume());
   SetMainColorPtr((Color_t*)(l + sizeof(void*)));
   fRnrSelf      = fNode->TGeoAtt::IsVisible();
}
const Text_t* TEveGeoNode::GetName()  const
{
   
   return fNode->GetName();
}
const Text_t* TEveGeoNode::GetTitle() const
{
   
   return fNode->GetTitle();
}
void TEveGeoNode::ExpandIntoListTree(TGListTree* ltree,
                                     TGListTreeItem* parent)
{
   
   
   if (fChildren.empty() && fNode->GetVolume()->GetNdaughters() > 0) {
      TIter next(fNode->GetVolume()->GetNodes());
      TGeoNode* dnode;
      while ((dnode = (TGeoNode*) next()) != 0) {
         TEveGeoNode* node_re = new TEveGeoNode(dnode);
         AddElement(node_re);
      }
   }
   TEveElement::ExpandIntoListTree(ltree, parent);
}
void TEveGeoNode::SetRnrSelf(Bool_t rnr)
{
   
   TEveElement::SetRnrSelf(rnr);
   fNode->SetVisibility(rnr);
}
void TEveGeoNode::SetRnrChildren(Bool_t rnr)
{
   
   TEveElement::SetRnrChildren(rnr);
   fNode->VisibleDaughters(rnr);
}
void TEveGeoNode::SetRnrState(Bool_t rnr)
{
   
   TEveElement::SetRnrState(rnr);
   fNode->SetVisibility(rnr);
   fNode->VisibleDaughters(rnr);
}
void TEveGeoNode::SetMainColor(Color_t color)
{
   
   fNode->GetVolume()->SetLineColor(color);
   UpdateItems();
}
void TEveGeoNode::SetMainColor(Pixel_t pixel)
{
   
   SetMainColor(Color_t(TColor::GetColor(pixel)));
}
void TEveGeoNode::UpdateNode(TGeoNode* node)
{
   
   
   
   
   
   
   static const TEveException eH("TEveGeoNode::UpdateNode ");
   
   if(fNode == node)
      UpdateItems();
   for(List_i i=fChildren.begin(); i!=fChildren.end(); ++i) {
      ((TEveGeoNode*)(*i))->UpdateNode(node);
   }
}
void TEveGeoNode::UpdateVolume(TGeoVolume* volume)
{
   
   
   
   
   
   
   static const TEveException eH("TEveGeoNode::UpdateVolume ");
   
   if(fNode->GetVolume() == volume)
      UpdateItems();
   for(List_i i=fChildren.begin(); i!=fChildren.end(); ++i) {
      ((TEveGeoNode*)(*i))->UpdateVolume(volume);
   }
}
void TEveGeoNode::Draw(Option_t* option)
{
   
   TString opt("SAME");
   opt += option;
   fNode->GetVolume()->Draw(opt);
}
void TEveGeoNode::Save(const char* file, const char* name)
{
   
   TEveGeoShapeExtract* gse = DumpShapeTree(this, 0, 0);
   TFile f(file, "RECREATE");
   gse->Write(name);
   f.Close();
}
TEveGeoShapeExtract* TEveGeoNode::DumpShapeTree(TEveGeoNode* geon, TEveGeoShapeExtract* parent, Int_t level)
{
   
   printf("dump_shape_tree %s \n", geon->GetName());
   TGeoNode*   tnode   = 0;
   TGeoVolume* tvolume = 0;
   TGeoShape*  tshape  = 0;
   tnode = geon->GetNode();
   if(tnode == 0) {
      printf("Null node for %s; assuming it's a holder and descending.\n", geon->GetName());
      goto do_dump;
   }
   tvolume = tnode->GetVolume();
   if(tvolume == 0) {
      printf("Null volume for %s; skipping.\n", geon->GetName());
      return 0;
   }
   tshape  = tvolume->GetShape();
do_dump:
   
   TEveTrans trans;
   if (parent) if (parent) trans.SetFromArray(parent->GetTrans());
   TGeoMatrix* gm =  tnode->GetMatrix();
   const Double_t* rm = gm->GetRotationMatrix();
   const Double_t* tv = gm->GetTranslation();
   TEveTrans t;
   t(1,1) = rm[0]; t(1,2) = rm[1]; t(1,3) = rm[2];
   t(2,1) = rm[3]; t(2,2) = rm[4]; t(2,3) = rm[5];
   t(3,1) = rm[6]; t(3,2) = rm[7]; t(3,3) = rm[8];
   t(1,4) = tv[0]; t(2,4) = tv[1]; t(3,4) = tv[2];
   trans *= t;
   TEveGeoShapeExtract* gse = new TEveGeoShapeExtract(geon->GetName(), geon->GetTitle());
   gse->SetTrans(trans.Array());
   Int_t ci = 0;
   if(tvolume) ci = tvolume->GetLineColor();
   TColor* c = gROOT->GetColor(ci);
   Float_t rgba[4] = {1, 0, 0, 1};
   if (c) {
      rgba[0] = c->GetRed();
      rgba[1] = c->GetGreen();
      rgba[2] = c->GetBlue();
   }
   gse->SetRGBA(rgba);
   Bool_t rnr = geon->GetRnrSelf();
   if(level > gGeoManager->GetVisLevel())
      rnr = kFALSE;
   gse->SetRnrSelf(rnr);
   gse->SetRnrElements(geon->GetRnrChildren());
   if(dynamic_cast<TGeoShapeAssembly*>(tshape)){
      
      tshape = 0;
   }
   gse->SetShape(tshape);
   level ++;
   if ( geon->GetNChildren())
   {
      TList* ele = new TList();
      gse->SetElements(ele);
      gse->GetElements()->SetOwner(true);
      TEveElement::List_i i = geon->BeginChildren();
      while (i != geon->EndChildren()) {
         TEveGeoNode* l = dynamic_cast<TEveGeoNode*>(*i);
         DumpShapeTree(l, gse, level+1);
         i++;
      }
   }
   if(parent)
      parent->GetElements()->Add(gse);
   return gse;
}
ClassImp(TEveGeoTopNode)
TEveGeoTopNode::TEveGeoTopNode(TGeoManager* manager, TGeoNode* node,
                               Int_t visopt, Int_t vislvl) :
   TEveGeoNode  (node),
   fManager     (manager),
   fGlobalTrans (),
   fVisOption   (visopt),
   fVisLevel    (vislvl)
{
   
   fRnrSelf = kTRUE;
}
void TEveGeoTopNode::SetGlobalTrans(const TGeoHMatrix* m)
{
   
   fGlobalTrans.SetFrom(*m);
}
void TEveGeoTopNode::UseNodeTrans()
{
   
   
   fGlobalTrans.SetFrom(*fNode->GetMatrix());
}
void TEveGeoTopNode::SetVisOption(Int_t visopt)
{
   
   fVisOption = visopt;
   gEve->Redraw3D();
}
void TEveGeoTopNode::SetVisLevel(Int_t vislvl)
{
   
   fVisLevel = vislvl;
   gEve->Redraw3D();
}
void TEveGeoTopNode::SetRnrSelf(Bool_t rnr)
{
   
   TEveElement::SetRnrSelf(rnr);
}
void TEveGeoTopNode::Draw(Option_t* option)
{
   
   AppendPad(option);
}
void TEveGeoTopNode::Paint(Option_t* option)
{
   
   
   
   if (fRnrSelf) {
      gGeoManager = fManager;
      TVirtualPad* pad = gPad;
      gPad = 0;
      TGeoVolume* top_volume = fManager->GetTopVolume();
      fManager->SetVisOption(fVisOption);
      fManager->SetVisLevel(fVisLevel);
      fManager->SetTopVolume(fNode->GetVolume());
      gPad = pad;
      TVirtualGeoPainter* vgp = fManager->GetGeomPainter();
      if(vgp != 0) {
         TGeoHMatrix geomat;
         fGlobalTrans.SetGeoHMatrix(geomat);
         vgp->PaintNode(fNode, option, &geomat);
      }
      fManager->SetTopVolume(top_volume);
   }
}
void TEveGeoTopNode::VolumeVisChanged(TGeoVolume* volume)
{
   
   static const TEveException eH("TEveGeoTopNode::VolumeVisChanged ");
   printf("%s volume %s %p\n", eH.Data(), volume->GetName(), (void*)volume);
   UpdateVolume(volume);
}
void TEveGeoTopNode::VolumeColChanged(TGeoVolume* volume)
{
   
   static const TEveException eH("TEveGeoTopNode::VolumeColChanged ");
   printf("%s volume %s %p\n", eH.Data(), volume->GetName(), (void*)volume);
   UpdateVolume(volume);
}
void TEveGeoTopNode::NodeVisChanged(TGeoNode* node)
{
   
   static const TEveException eH("TEveGeoTopNode::NodeVisChanged ");
   printf("%s node %s %p\n", eH.Data(), node->GetName(), (void*)node);
   UpdateNode(node);
}
ClassImp(TEveGeoShape)
TEveGeoShape::TEveGeoShape(const Text_t* name, const Text_t* title) :
   TEveElement(),
   TNamed        (name, title),
   fHMTrans      (),
   fColor        (0),
   fTransparency (0),
   fShape        (0)
{
   
   fMainColorPtr = &fColor;
}
TEveGeoShape::~TEveGeoShape()
{
   
   if (fShape) {
      fShape->SetUniqueID(fShape->GetUniqueID() - 1);
      if (fShape->GetUniqueID() == 0)
         delete fShape;
   }
}
void TEveGeoShape::Paint(Option_t* )
{
   
   if (fShape == 0)
      return;
   TBuffer3D& buff = (TBuffer3D&) fShape->GetBuffer3D
      (TBuffer3D::kCore, kFALSE);
   buff.fID           = this;
   buff.fColor        = fColor;
   buff.fTransparency = fTransparency;
   fHMTrans.SetBuffer3D(buff);
   buff.fLocalFrame   = kTRUE; 
   fShape->GetBuffer3D(TBuffer3D::kBoundingBox | TBuffer3D::kShapeSpecific, kTRUE);
   Int_t reqSec = gPad->GetViewer3D()->AddObject(buff);
   if (reqSec != TBuffer3D::kNone) {
      fShape->GetBuffer3D(reqSec, kTRUE);
      reqSec = gPad->GetViewer3D()->AddObject(buff);
   }
   if (reqSec != TBuffer3D::kNone)
      printf("spooky reqSec=%d for %s\n", reqSec, GetName());
}
void TEveGeoShape::Save(const char* file, const char* name)
{
   
   
   TEveGeoShapeExtract* gse = DumpShapeTree(this, 0);
   TFile f(file, "RECREATE");
   gse->Write(name);
   f.Close();
}
TEveGeoShapeExtract* TEveGeoShape::DumpShapeTree(TEveGeoShape* gsre,
                                                 TEveGeoShapeExtract* parent)
{
   
   TEveGeoShapeExtract* she = new TEveGeoShapeExtract(gsre->GetName(), gsre->GetTitle());
   she->SetTrans(gsre->RefHMTrans().Array());
   Int_t ci = gsre->GetColor();
   TColor* c = gROOT->GetColor(ci);
   Float_t rgba[4] = {1, 0, 0, 1 - gsre->GetMainTransparency()/100.};
   if (c)
   {
      rgba[0] = c->GetRed();
      rgba[1] = c->GetGreen();
      rgba[2] = c->GetBlue();
   }
   she->SetRGBA(rgba);
   she->SetRnrSelf(gsre->GetRnrSelf());
   she->SetRnrElements(gsre->GetRnrChildren());
   she->SetShape(gsre->GetShape());
   if ( gsre->GetNChildren())
   {
      TList* ele = new TList();
      she->SetElements(ele);
      she->GetElements()->SetOwner(true);
      TEveElement::List_i i = gsre->BeginChildren();
      while (i != gsre->EndChildren()) {
         TEveGeoShape* l = dynamic_cast<TEveGeoShape*>(*i);
         DumpShapeTree(l, she);
         i++;
      }
   }
   if(parent)
      parent->GetElements()->Add(she);
   return she;
}
TEveGeoShape* TEveGeoShape::ImportShapeExtract(TEveGeoShapeExtract* gse,
                                               TEveElement*         parent)
{
   
   gEve->DisableRedraw();
   TEveGeoShape* gsre = SubImportShapeExtract(gse, parent);
   gsre->ElementChanged();
   gEve->EnableRedraw();
   return gsre;
}
TEveGeoShape* TEveGeoShape::SubImportShapeExtract(TEveGeoShapeExtract* gse,
                                                  TEveElement*         parent)
{
   
   TEveGeoShape* gsre = new TEveGeoShape(gse->GetName(), gse->GetTitle());
   gsre->fHMTrans.SetFromArray(gse->GetTrans());
   const Float_t* rgba = gse->GetRGBA();
   gsre->fColor        = TColor::GetColor(rgba[0], rgba[1], rgba[2]);
   gsre->fTransparency = (UChar_t) (100.0f*(1.0f - rgba[3]));
   gsre->SetRnrSelf(gse->GetRnrSelf());
   gsre->SetRnrChildren(gse->GetRnrElements());
   gsre->fShape = gse->GetShape();
   if (gsre->fShape)
      gsre->fShape->SetUniqueID(gsre->fShape->GetUniqueID() + 1);
   gEve->AddGlobalElement(gsre, parent);
   if (gse->HasElements())
   {
      TIter next(gse->GetElements());
      TEveGeoShapeExtract* chld;
      while ((chld = (TEveGeoShapeExtract*) next()) != 0)
         SubImportShapeExtract(chld, gsre);
   }
   return gsre;
}
TClass* TEveGeoShape::ProjectedClass() const
{
   
   
   return TEvePolygonSetProjected::Class();
}
TBuffer3D* TEveGeoShape::MakeBuffer3D()
{
   
   
   if (fShape == 0) return 0;
   if (dynamic_cast<TGeoShapeAssembly*>(fShape)) {
      
      return 0;
   }
   TBuffer3D* buff  = fShape->MakeBuffer3D();
   if (fHMTrans.GetUseTrans())
   {
      TEveTrans& mx = RefHMTrans();
      Int_t n = buff->NbPnts();
      Double_t* pnts = buff->fPnts;
      for(Int_t k = 0; k < n; ++k)
      {
         mx.MultiplyIP(&pnts[3*k]);
      }
   }
   return buff;
}
Last update: Thu Jan 17 08:48:35 2008
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.