ROOT logo
// @(#)root/eve:$Id: TEveGeoShape.h 28343 2009-04-23 21:34:31Z matevz $
// Author: Matevz Tadel 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_TEveGeoShape
#define ROOT_TEveGeoShape

#include "TEveElement.h"
#include "TEveProjectionBases.h"

class TGeoShape;
class TEveGeoShapeExtract;

class TEveGeoShape : public TEveElement,
                     public TNamed,
                     public TEveProjectable
{
   TEveGeoShape(const TEveGeoShape&);            // Not implemented
   TEveGeoShape& operator=(const TEveGeoShape&); // Not implemented

protected:
   Color_t           fColor;
   Int_t             fNSegments;
   TGeoShape*        fShape;

   static TGeoManager* fgGeoMangeur;

   static TEveGeoShape* SubImportShapeExtract(TEveGeoShapeExtract* gse, TEveElement* parent);
   TEveGeoShapeExtract* DumpShapeTree(TEveGeoShape* geon, TEveGeoShapeExtract* parent=0);

public:
   TEveGeoShape(const char* name="TEveGeoShape", const char* title=0);
   virtual ~TEveGeoShape();

   virtual Bool_t  CanEditMainColor()        const { return kTRUE; }
   virtual Bool_t  CanEditMainTransparency() const { return kTRUE; }

   Color_t     GetColor()      const { return fColor; }
   Int_t       GetNSegments()  const { return fNSegments; }
   void        SetNSegments(Int_t s) { fNSegments = s; }
   TGeoShape*  GetShape()            { return fShape; }
   void        SetShape(TGeoShape* s);

   virtual void Paint(Option_t* option="");

   void Save(const char* file, const char* name="Extract");
   void SaveExtract(const char* file, const char* name);
   void WriteExtract(const char* name);

   static TEveGeoShape* ImportShapeExtract(TEveGeoShapeExtract* gse, TEveElement* parent=0);

   // GeoProjectable
   virtual TBuffer3D*   MakeBuffer3D();
   virtual TClass*      ProjectedClass() const;

   static TGeoManager*  GetGeoMangeur();

   ClassDef(TEveGeoShape, 1); // Wrapper for TGeoShape with absolute positioning and color attributes allowing display of extracted TGeoShape's (without an active TGeoManager) and simplified geometries (needed for NLT projections).
};

#endif
 TEveGeoShape.h:1
 TEveGeoShape.h:2
 TEveGeoShape.h:3
 TEveGeoShape.h:4
 TEveGeoShape.h:5
 TEveGeoShape.h:6
 TEveGeoShape.h:7
 TEveGeoShape.h:8
 TEveGeoShape.h:9
 TEveGeoShape.h:10
 TEveGeoShape.h:11
 TEveGeoShape.h:12
 TEveGeoShape.h:13
 TEveGeoShape.h:14
 TEveGeoShape.h:15
 TEveGeoShape.h:16
 TEveGeoShape.h:17
 TEveGeoShape.h:18
 TEveGeoShape.h:19
 TEveGeoShape.h:20
 TEveGeoShape.h:21
 TEveGeoShape.h:22
 TEveGeoShape.h:23
 TEveGeoShape.h:24
 TEveGeoShape.h:25
 TEveGeoShape.h:26
 TEveGeoShape.h:27
 TEveGeoShape.h:28
 TEveGeoShape.h:29
 TEveGeoShape.h:30
 TEveGeoShape.h:31
 TEveGeoShape.h:32
 TEveGeoShape.h:33
 TEveGeoShape.h:34
 TEveGeoShape.h:35
 TEveGeoShape.h:36
 TEveGeoShape.h:37
 TEveGeoShape.h:38
 TEveGeoShape.h:39
 TEveGeoShape.h:40
 TEveGeoShape.h:41
 TEveGeoShape.h:42
 TEveGeoShape.h:43
 TEveGeoShape.h:44
 TEveGeoShape.h:45
 TEveGeoShape.h:46
 TEveGeoShape.h:47
 TEveGeoShape.h:48
 TEveGeoShape.h:49
 TEveGeoShape.h:50
 TEveGeoShape.h:51
 TEveGeoShape.h:52
 TEveGeoShape.h:53
 TEveGeoShape.h:54
 TEveGeoShape.h:55
 TEveGeoShape.h:56
 TEveGeoShape.h:57
 TEveGeoShape.h:58
 TEveGeoShape.h:59
 TEveGeoShape.h:60
 TEveGeoShape.h:61
 TEveGeoShape.h:62
 TEveGeoShape.h:63
 TEveGeoShape.h:64
 TEveGeoShape.h:65
 TEveGeoShape.h:66
 TEveGeoShape.h:67
 TEveGeoShape.h:68