// @(#)root/eve:$Id$ // Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007 /************************************************************************* * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_TEveGeoNode #define ROOT_TEveGeoNode #include "TEveElement.h" class TGeoVolume; class TGeoNode; class TGeoHMatrix; class TGeoManager; // Added here to ease transition - forward declaration should be used. // This include will be removed for 5.24. #include // class TGeoShape; class TEveGeoShapeExtract; //---------------------------------------------------------------- class TEveGeoNode : public TEveElement, public TObject { friend class TEveGeoNodeEditor; TEveGeoNode(const TEveGeoNode&); // Not implemented TEveGeoNode& operator=(const TEveGeoNode&); // Not implemented protected: TGeoNode *fNode; TEveGeoShapeExtract* DumpShapeTree(TEveGeoNode* geon, TEveGeoShapeExtract* parent=0, Bool_t leafs_only=kFALSE); static Int_t fgCSGExportNSeg; //! static std::list fgTemporaryStore; //! public: TEveGeoNode(TGeoNode* node); virtual TObject* GetObject(const TEveException&) const { const TObject* obj = this; return const_cast(obj); } virtual const char* GetName() const; virtual const char* GetTitle() const; virtual const char* GetElementName() const; virtual const char* GetElementTitle() const; TGeoNode* GetNode() const { return fNode; } virtual void ExpandIntoListTree(TGListTree* ltree, TGListTreeItem* parent); virtual void ExpandIntoListTrees(); virtual void ExpandIntoListTreesRecursively(); virtual Bool_t CanEditElement() const { return kFALSE; } virtual void AddStamp(UChar_t bits); virtual Bool_t CanEditMainColor() const; virtual void SetMainColor(Color_t color); virtual Bool_t CanEditMainTransparency() const; virtual Char_t GetMainTransparency() const; virtual void SetMainTransparency(Char_t t); void UpdateNode(TGeoNode* node); void UpdateVolume(TGeoVolume* volume); void Save(const char* file, const char* name="Extract", Bool_t leafs_only=kFALSE); void SaveExtract(const char* file, const char* name, Bool_t leafs_only); void WriteExtract(const char* name, Bool_t leafs_only); virtual void Draw(Option_t* option=""); static Int_t GetCSGExportNSeg(); static void SetCSGExportNSeg(Int_t nseg); ClassDef(TEveGeoNode, 0); // Wrapper for TGeoNode that allows it to be shown in GUI and controlled as a TEveElement. }; //---------------------------------------------------------------- class TEveGeoTopNode : public TEveGeoNode { TEveGeoTopNode(const TEveGeoTopNode&); // Not implemented TEveGeoTopNode& operator=(const TEveGeoTopNode&); // Not implemented protected: TGeoManager* fManager; Int_t fVisOption; Int_t fVisLevel; Int_t fMaxVisNodes; public: TEveGeoTopNode(TGeoManager* manager, TGeoNode* node, Int_t visopt=1, Int_t vislvl=3, Int_t maxvisnds=10000); virtual ~TEveGeoTopNode() {} void UseNodeTrans(); TGeoManager* GetGeoManager() const { return fManager; } Int_t GetVisOption() const { return fVisOption; } void SetVisOption(Int_t vo) { fVisOption = vo; } Int_t GetVisLevel() const { return fVisLevel; } void SetVisLevel(Int_t vl) { fVisLevel = vl; } Int_t GetMaxVisNodes() const { return fMaxVisNodes; } void SetMaxVisNodes(Int_t mvn) { fMaxVisNodes = mvn; } virtual Bool_t CanEditElement() const { return kTRUE; } virtual Bool_t SingleRnrState() const { return kTRUE; } virtual void AddStamp(UChar_t bits); virtual void Draw(Option_t* option=""); virtual void Paint(Option_t* option=""); // Signals from GeoManager. // These are not available any more ... colors in list-tree not refreshed // properly. void VolumeVisChanged(TGeoVolume* volume); void VolumeColChanged(TGeoVolume* volume); void NodeVisChanged(TGeoNode* node); ClassDef(TEveGeoTopNode, 0); // Top-level TEveGeoNode with a pointer to TGeoManager and controls for steering of TGeoPainter. }; #endif