ROOT logo
// @(#)root/geom:$Id$
// Author: Andrei Gheata   31/01/02

/*************************************************************************
 * Copyright (C) 1995-2000, 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_TGeoCompositeShape
#define ROOT_TGeoCompositeShape

#ifndef ROOT_TGeoBBox
#include "TGeoBBox.h"
#endif
    
////////////////////////////////////////////////////////////////////////////
//                                                                        //
// TGeoCompositeShape - composite shape class. A composite shape contains //
//   a list of primitive shapes, the list of coresponding transformations //
//   and a boolean finder handling boolean operations among components.   //
//                                                                        //
////////////////////////////////////////////////////////////////////////////

class TGeoBoolNode;

class TGeoCompositeShape : public TGeoBBox
{
private :
// data members
   TGeoBoolNode         *fNode;             // top boolean node

protected:
   TGeoCompositeShape(const TGeoCompositeShape& gcs)
     : TGeoBBox(gcs), fNode(gcs.fNode) { }
   TGeoCompositeShape& operator=(const TGeoCompositeShape& gcs)
     {if(this!=&gcs) {TGeoBBox::operator=(gcs); fNode=gcs.fNode;} return *this;}

public:
   // constructors
   TGeoCompositeShape();
   TGeoCompositeShape(const char *name, const char *expression);
   TGeoCompositeShape(const char *expression);
   TGeoCompositeShape(const char *name, TGeoBoolNode *node);
   // destructor
   virtual ~TGeoCompositeShape();
   // methods
   virtual Double_t      Capacity() const;
   virtual void          ClearThreadData() const;
   virtual void          CreateThreadData(Int_t nthreads);
   virtual void          ComputeBBox();
   virtual void          ComputeNormal(const Double_t *point, const Double_t *dir, Double_t *norm);
   virtual void          ComputeNormal_v(const Double_t *points, const Double_t *dirs, Double_t *norms, Int_t vecsize);
   virtual Bool_t        Contains(const Double_t *point) const;
   virtual void          Contains_v(const Double_t *points, Bool_t *inside, Int_t vecsize) const;
   virtual Int_t         DistancetoPrimitive(Int_t px, Int_t py);
   virtual Double_t      DistFromInside(const Double_t *point, const Double_t *dir, Int_t iact=1, 
                                   Double_t step=TGeoShape::Big(), Double_t *safe=0) const;
   virtual void          DistFromInside_v(const Double_t *points, const Double_t *dirs, Double_t *dists, Int_t vecsize, Double_t *step) const;
   virtual Double_t      DistFromOutside(const Double_t *point, const Double_t *dir, Int_t iact=1, 
                                   Double_t step=TGeoShape::Big(), Double_t *safe=0) const;
   virtual void          DistFromOutside_v(const Double_t *points, const Double_t *dirs, Double_t *dists, Int_t vecsize, Double_t *step) const;
   virtual TGeoVolume   *Divide(TGeoVolume *voldiv, const char *divname, Int_t iaxis, Int_t ndiv, 
                                Double_t start, Double_t step);
   TGeoBoolNode         *GetBoolNode() const {return fNode;}
   virtual void          GetBoundingCylinder(Double_t * /*param*/) const {;}
   virtual TGeoShape    *GetMakeRuntimeShape(TGeoShape * /*mother*/, TGeoMatrix * /*mat*/) const {return 0;}
   virtual void          GetMeshNumbers(Int_t &nvert, Int_t &nsegs, Int_t &npols) const;
   virtual Int_t         GetNmeshVertices() const;
   virtual Bool_t        GetPointsOnSegments(Int_t /*npoints*/, Double_t * /*array*/) const {return kFALSE;}
   virtual void          InspectShape() const;
   virtual Bool_t        IsComposite() const {return kTRUE;}
   virtual Bool_t        IsCylType() const {return kFALSE;}
   void                  MakeNode(const char *expression);
   virtual Bool_t        PaintComposite(Option_t *option = "") const;
   void                  RegisterYourself();
   virtual Double_t      Safety(const Double_t *point, Bool_t in=kTRUE) const;
   virtual void          Safety_v(const Double_t *points, const Bool_t *inside, Double_t *safe, Int_t vecsize) const;
   virtual void          SavePrimitive(std::ostream &out, Option_t *option = "");
   virtual void          SetDimensions(Double_t * /*param*/) {;}
   virtual void          SetPoints(Double_t *points) const;
   virtual void          SetPoints(Float_t *points) const;
   virtual void          Sizeof3D() const;

   ClassDef(TGeoCompositeShape, 1)         // boolean composite shape
};



#endif

 TGeoCompositeShape.h:1
 TGeoCompositeShape.h:2
 TGeoCompositeShape.h:3
 TGeoCompositeShape.h:4
 TGeoCompositeShape.h:5
 TGeoCompositeShape.h:6
 TGeoCompositeShape.h:7
 TGeoCompositeShape.h:8
 TGeoCompositeShape.h:9
 TGeoCompositeShape.h:10
 TGeoCompositeShape.h:11
 TGeoCompositeShape.h:12
 TGeoCompositeShape.h:13
 TGeoCompositeShape.h:14
 TGeoCompositeShape.h:15
 TGeoCompositeShape.h:16
 TGeoCompositeShape.h:17
 TGeoCompositeShape.h:18
 TGeoCompositeShape.h:19
 TGeoCompositeShape.h:20
 TGeoCompositeShape.h:21
 TGeoCompositeShape.h:22
 TGeoCompositeShape.h:23
 TGeoCompositeShape.h:24
 TGeoCompositeShape.h:25
 TGeoCompositeShape.h:26
 TGeoCompositeShape.h:27
 TGeoCompositeShape.h:28
 TGeoCompositeShape.h:29
 TGeoCompositeShape.h:30
 TGeoCompositeShape.h:31
 TGeoCompositeShape.h:32
 TGeoCompositeShape.h:33
 TGeoCompositeShape.h:34
 TGeoCompositeShape.h:35
 TGeoCompositeShape.h:36
 TGeoCompositeShape.h:37
 TGeoCompositeShape.h:38
 TGeoCompositeShape.h:39
 TGeoCompositeShape.h:40
 TGeoCompositeShape.h:41
 TGeoCompositeShape.h:42
 TGeoCompositeShape.h:43
 TGeoCompositeShape.h:44
 TGeoCompositeShape.h:45
 TGeoCompositeShape.h:46
 TGeoCompositeShape.h:47
 TGeoCompositeShape.h:48
 TGeoCompositeShape.h:49
 TGeoCompositeShape.h:50
 TGeoCompositeShape.h:51
 TGeoCompositeShape.h:52
 TGeoCompositeShape.h:53
 TGeoCompositeShape.h:54
 TGeoCompositeShape.h:55
 TGeoCompositeShape.h:56
 TGeoCompositeShape.h:57
 TGeoCompositeShape.h:58
 TGeoCompositeShape.h:59
 TGeoCompositeShape.h:60
 TGeoCompositeShape.h:61
 TGeoCompositeShape.h:62
 TGeoCompositeShape.h:63
 TGeoCompositeShape.h:64
 TGeoCompositeShape.h:65
 TGeoCompositeShape.h:66
 TGeoCompositeShape.h:67
 TGeoCompositeShape.h:68
 TGeoCompositeShape.h:69
 TGeoCompositeShape.h:70
 TGeoCompositeShape.h:71
 TGeoCompositeShape.h:72
 TGeoCompositeShape.h:73
 TGeoCompositeShape.h:74
 TGeoCompositeShape.h:75
 TGeoCompositeShape.h:76
 TGeoCompositeShape.h:77
 TGeoCompositeShape.h:78
 TGeoCompositeShape.h:79
 TGeoCompositeShape.h:80
 TGeoCompositeShape.h:81
 TGeoCompositeShape.h:82
 TGeoCompositeShape.h:83
 TGeoCompositeShape.h:84
 TGeoCompositeShape.h:85
 TGeoCompositeShape.h:86
 TGeoCompositeShape.h:87
 TGeoCompositeShape.h:88
 TGeoCompositeShape.h:89
 TGeoCompositeShape.h:90
 TGeoCompositeShape.h:91
 TGeoCompositeShape.h:92
 TGeoCompositeShape.h:93