// @(#)root/eve:$Id$
// 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 "TEveShape.h"

class TGeoShape;
class TGeoHMatrix;
class TGeoCompositeShape;
class TEveGeoShapeExtract;
class TBuffer3D;

class TEveGeoShape : public TEveShape
{
private:
   TEveGeoShape(const TEveGeoShape&);            // Not implemented
   TEveGeoShape& operator=(const TEveGeoShape&); // Not implemented

protected:
   Int_t               fNSegments;
   TGeoShape          *fShape;
   TGeoCompositeShape *fCompositeShape; //! Temporary holder (if passed shape is composite shape).

   static TGeoManager *fgGeoMangeur;

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

   TGeoShape* MakePolyShape();

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

   virtual TObject* GetObject(const TEveException&) const
   { const TObject* obj = this; return const_cast<TObject*>(obj); }

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

   virtual void ComputeBBox();
   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 TEveProjection* p) const;

   static TGeoManager*  GetGeoMangeur();
   static TGeoHMatrix*  GetGeoHMatrixIdentity();

   ClassDef(TEveGeoShape, 2); // 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).
};

//------------------------------------------------------------------------------

class TEveGeoShapeProjected : public TEveShape,
                              public TEveProjected
{
private:
   TEveGeoShapeProjected(const TEveGeoShapeProjected&);            // Not implemented
   TEveGeoShapeProjected& operator=(const TEveGeoShapeProjected&); // Not implemented

protected:
   TBuffer3D   *fBuff;

   virtual void SetDepthLocal(Float_t d);

public:
   TEveGeoShapeProjected();
   virtual ~TEveGeoShapeProjected() {}

   virtual void SetProjection(TEveProjectionManager* proj, TEveProjectable* model);
   virtual void UpdateProjection();
   virtual TEveElement* GetProjectedAsElement() { return this; }

   virtual void ComputeBBox();

   ClassDef(TEveGeoShapeProjected, 0);
};

#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
 TEveGeoShape.h:69
 TEveGeoShape.h:70
 TEveGeoShape.h:71
 TEveGeoShape.h:72
 TEveGeoShape.h:73
 TEveGeoShape.h:74
 TEveGeoShape.h:75
 TEveGeoShape.h:76
 TEveGeoShape.h:77
 TEveGeoShape.h:78
 TEveGeoShape.h:79
 TEveGeoShape.h:80
 TEveGeoShape.h:81
 TEveGeoShape.h:82
 TEveGeoShape.h:83
 TEveGeoShape.h:84
 TEveGeoShape.h:85
 TEveGeoShape.h:86
 TEveGeoShape.h:87
 TEveGeoShape.h:88
 TEveGeoShape.h:89
 TEveGeoShape.h:90
 TEveGeoShape.h:91
 TEveGeoShape.h:92
 TEveGeoShape.h:93
 TEveGeoShape.h:94
 TEveGeoShape.h:95
 TEveGeoShape.h:96
 TEveGeoShape.h:97
 TEveGeoShape.h:98
 TEveGeoShape.h:99