Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TGeoBoolNode.h
Go to the documentation of this file.
1// @(#):$Id$
2// Author: Andrei Gheata 30/05/02
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_TGeoBoolNode
13#define ROOT_TGeoBoolNode
14
15#include "TGeoShape.h"
16
17#include <mutex>
18#include <vector>
19
20// forward declarations
21class TGeoShape;
22class TGeoMatrix;
23class TGeoHMatrix;
24
25class TGeoBoolNode : public TObject {
26public:
32 struct ThreadData_t {
33 Int_t fSelected; // ! selected branch
34
37 };
39 void ClearThreadData() const;
41
42private:
43 TGeoBoolNode(const TGeoBoolNode &) = delete;
45
46protected:
47 TGeoShape *fLeft{nullptr}; // shape on the left branch
48 TGeoShape *fRight{nullptr}; // shape on the right branch
49 TGeoMatrix *fLeftMat{nullptr}; // transformation that applies to the left branch
50 TGeoMatrix *fRightMat{nullptr}; // transformation that applies to the right branch
51 mutable Int_t fNpoints{0}; //! number of points on the mesh
52 mutable Double_t *fPoints{nullptr}; //! array of mesh points
53
54 mutable std::vector<ThreadData_t *> fThreadData; //! Navigation data per thread
55 mutable Int_t fThreadSize{0}; //! Size for the navigation data array
56 mutable std::mutex fMutex; //! Mutex for thread data access
57 mutable Bool_t fMeshValid{kFALSE}; //! Flag for mesh cache validity
58 // methods
59 Bool_t MakeBranch(const char *expr, Bool_t left);
61
62public:
63 // constructors
65 TGeoBoolNode(const char *expr1, const char *expr2);
66 TGeoBoolNode(TGeoShape *left, TGeoShape *right, TGeoMatrix *lmat = nullptr, TGeoMatrix *rmat = nullptr);
67
68 // destructor
69 ~TGeoBoolNode() override;
70 // methods
72 virtual void ComputeNormal(const Double_t *point, const Double_t *dir, Double_t *norm) const = 0;
73 virtual Bool_t Contains(const Double_t *point) const = 0;
74 virtual Int_t DistanceToPrimitive(Int_t px, Int_t py) = 0;
75 virtual Double_t DistFromInside(const Double_t *point, const Double_t *dir, Int_t iact = 1, Double_t step = 0,
76 Double_t *safe = nullptr) const = 0;
77 virtual Double_t DistFromOutside(const Double_t *point, const Double_t *dir, Int_t iact = 1, Double_t step = 0,
78 Double_t *safe = nullptr) const = 0;
79 virtual EGeoBoolType GetBooleanOperator() const = 0;
81 TGeoMatrix *GetLeftMatrix() const { return fLeftMat; }
82 TGeoMatrix *GetRightMatrix() const { return fRightMat; }
83 TGeoShape *GetLeftShape() const { return fLeft; }
84 TGeoShape *GetRightShape() const { return fRight; }
85 TGeoShape::EInside Inside(const Double_t *point) const;
87 virtual TGeoBoolNode *MakeClone() const = 0;
88 void Paint(Option_t *option) override;
89 void RegisterMatrices();
91 virtual Double_t Safety(const Double_t *point, Bool_t in = kTRUE) const = 0;
92 void SavePrimitive(std::ostream &out, Option_t *option = "") override;
93 virtual void SetPoints(Double_t *points) const;
94 virtual void SetPoints(Float_t *points) const;
95 void SetSelected(Int_t sel);
96 virtual void Sizeof3D() const;
97
98 ClassDefOverride(TGeoBoolNode, 1) // a boolean node
99};
100
101/// Boolean node representing a union between two components.
102class TGeoUnion : public TGeoBoolNode {
103public:
104 // constructors
105 TGeoUnion();
106 TGeoUnion(const char *expr1, const char *expr2);
107 TGeoUnion(TGeoShape *left, TGeoShape *right, TGeoMatrix *lmat = nullptr, TGeoMatrix *rmat = nullptr);
108
109 // destructor
110 ~TGeoUnion() override;
111 // methods
113 void ComputeNormal(const Double_t *point, const Double_t *dir, Double_t *norm) const override;
114 Bool_t Contains(const Double_t *point) const override;
115 Int_t DistanceToPrimitive(Int_t px, Int_t py) override;
116 Double_t DistFromInside(const Double_t *point, const Double_t *dir, Int_t iact = 1, Double_t step = 0,
117 Double_t *safe = nullptr) const override;
118 Double_t DistFromOutside(const Double_t *point, const Double_t *dir, Int_t iact = 1, Double_t step = 0,
119 Double_t *safe = nullptr) const override;
120 EGeoBoolType GetBooleanOperator() const override { return kGeoUnion; }
121 Double_t Safety(const Double_t *point, Bool_t in = kTRUE) const override;
122 void SavePrimitive(std::ostream &out, Option_t *option = "") override;
123 void Sizeof3D() const override;
124
125 // CS specific
126 TGeoBoolNode *MakeClone() const override;
127 void Paint(Option_t *option) override;
128
129 ClassDefOverride(TGeoUnion, 1) // union node
130};
131
132/// Boolean node representing an intersection between two components.
134public:
135 // constructors
137 TGeoIntersection(const char *expr1, const char *expr2);
138 TGeoIntersection(TGeoShape *left, TGeoShape *right, TGeoMatrix *lmat = nullptr, TGeoMatrix *rmat = nullptr);
139
140 // destructor
141 ~TGeoIntersection() override;
142 // methods
144 void ComputeNormal(const Double_t *point, const Double_t *dir, Double_t *norm) const override;
145 Bool_t Contains(const Double_t *point) const override;
146 Int_t DistanceToPrimitive(Int_t px, Int_t py) override;
147 Double_t DistFromInside(const Double_t *point, const Double_t *dir, Int_t iact = 1, Double_t step = 0,
148 Double_t *safe = nullptr) const override;
149 Double_t DistFromOutside(const Double_t *point, const Double_t *dir, Int_t iact = 1, Double_t step = 0,
150 Double_t *safe = nullptr) const override;
152 Double_t Safety(const Double_t *point, Bool_t in = kTRUE) const override;
153 void SavePrimitive(std::ostream &out, Option_t *option = "") override;
154 void Sizeof3D() const override;
155
156 // CS specific
157 TGeoBoolNode *MakeClone() const override;
158 void Paint(Option_t *option) override;
159
160 ClassDefOverride(TGeoIntersection, 1) // intersection node
161};
162
163/// Boolean node representing a subtraction
165public:
166 // constructors
168 TGeoSubtraction(const char *expr1, const char *expr2);
169 TGeoSubtraction(TGeoShape *left, TGeoShape *right, TGeoMatrix *lmat = nullptr, TGeoMatrix *rmat = nullptr);
170
171 // destructor
172 ~TGeoSubtraction() override;
173 // methods
175 void ComputeNormal(const Double_t *point, const Double_t *dir, Double_t *norm) const override;
176 Bool_t Contains(const Double_t *point) const override;
177 Int_t DistanceToPrimitive(Int_t px, Int_t py) override;
178 Double_t DistFromInside(const Double_t *point, const Double_t *dir, Int_t iact = 1, Double_t step = 0,
179 Double_t *safe = nullptr) const override;
180 Double_t DistFromOutside(const Double_t *point, const Double_t *dir, Int_t iact = 1, Double_t step = 0,
181 Double_t *safe = nullptr) const override;
183 Double_t Safety(const Double_t *point, Bool_t in = kTRUE) const override;
184 void SavePrimitive(std::ostream &out, Option_t *option = "") override;
185 void Sizeof3D() const override;
186
187 // CS specific
188 TGeoBoolNode *MakeClone() const override;
189 void Paint(Option_t *option) override;
190
191 ClassDefOverride(TGeoSubtraction, 1) // subtraction node
192};
193
194#endif
bool Bool_t
Boolean (0=false, 1=true) (bool)
Definition RtypesCore.h:77
int Int_t
Signed integer 4 bytes (int)
Definition RtypesCore.h:59
float Float_t
Float 4 bytes (float)
Definition RtypesCore.h:71
constexpr Bool_t kFALSE
Definition RtypesCore.h:108
double Double_t
Double 8 bytes.
Definition RtypesCore.h:73
constexpr Bool_t kTRUE
Definition RtypesCore.h:107
const char Option_t
Option string (const char)
Definition RtypesCore.h:80
#define ClassDefOverride(name, id)
Definition Rtypes.h:348
Option_t Option_t option
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t sel
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t points
Base class for Boolean operations between two shapes.
virtual void Sizeof3D() const
Register size of this 3D object.
Bool_t MakeBranch(const char *expr, Bool_t left)
Flag for mesh cache validity.
TGeoMatrix * fLeftMat
void ClearThreadData() const
std::vector< ThreadData_t * > fThreadData
array of mesh points
~TGeoBoolNode() override
Destructor.
TGeoShape::EInside Inside(const Double_t *point) const
Implementation of the inside function using just Contains and GetNormal.
TGeoShape * fLeft
Bool_t ReplaceMatrix(TGeoMatrix *mat, TGeoMatrix *newmat)
Replace one of the matrices.
virtual Int_t DistanceToPrimitive(Int_t px, Int_t py)=0
virtual EGeoBoolType GetBooleanOperator() const =0
void AssignPoints(Int_t npoints, Double_t *points)
Set fPoints array.
void SavePrimitive(std::ostream &out, Option_t *option="") override
Save a primitive as a C++ statement(s) on output stream "out".
void CreateThreadData(Int_t nthreads)
Create thread data for n threads max.
TGeoMatrix * GetRightMatrix() const
TGeoShape * GetLeftShape() const
void Paint(Option_t *option) override
Special schema for feeding the 3D buffers to the painter client.
TGeoMatrix * GetLeftMatrix() const
TGeoBoolNode(const TGeoBoolNode &)=delete
virtual void SetPoints(Double_t *points) const
Fill buffer with shape vertices.
Int_t fThreadSize
Navigation data per thread.
TGeoBoolNode & operator=(const TGeoBoolNode &)=delete
std::mutex fMutex
Size for the navigation data array.
virtual Double_t Safety(const Double_t *point, Bool_t in=kTRUE) const =0
void RegisterMatrices()
Register all matrices of the boolean node and descendents.
virtual Bool_t Contains(const Double_t *point) const =0
virtual void ComputeNormal(const Double_t *point, const Double_t *dir, Double_t *norm) const =0
virtual void ComputeBBox(Double_t &dx, Double_t &dy, Double_t &dz, Double_t *origin)=0
TGeoShape * fRight
Bool_t fMeshValid
Mutex for thread data access.
Double_t * fPoints
number of points on the mesh
void InvalidateMeshCaches()
Invalidate mesh caching recursively.
virtual Double_t DistFromInside(const Double_t *point, const Double_t *dir, Int_t iact=1, Double_t step=0, Double_t *safe=nullptr) const =0
TGeoShape * GetRightShape() const
TGeoBoolNode()
Default constructor.
virtual Double_t DistFromOutside(const Double_t *point, const Double_t *dir, Int_t iact=1, Double_t step=0, Double_t *safe=nullptr) const =0
Int_t GetNpoints()
Returns number of vertices for the composite shape described by this node.
TGeoMatrix * fRightMat
ThreadData_t & GetThreadData() const
virtual TGeoBoolNode * MakeClone() const =0
void SetSelected(Int_t sel)
Set the selected branch.
Matrix class used for computing global transformations Should NOT be used for node definition.
Definition TGeoMatrix.h:459
Boolean node representing an intersection between two components.
Int_t DistanceToPrimitive(Int_t px, Int_t py) override
Compute minimum distance to shape vertices.
TGeoBoolNode * MakeClone() const override
Make a clone of this. Pointers are preserved.
TGeoIntersection()
Default constructor.
void Sizeof3D() const override
Register 3D size of this shape.
void ComputeBBox(Double_t &dx, Double_t &dy, Double_t &dz, Double_t *origin) override
Compute bounding box corresponding to a intersection of two shapes.
EGeoBoolType GetBooleanOperator() const override
Double_t DistFromOutside(const Double_t *point, const Double_t *dir, Int_t iact=1, Double_t step=0, Double_t *safe=nullptr) const override
Compute distance from a given point outside to the shape.
Double_t Safety(const Double_t *point, Bool_t in=kTRUE) const override
Compute safety distance for a union node;.
void SavePrimitive(std::ostream &out, Option_t *option="") override
Save a primitive as a C++ statement(s) on output stream "out".
void ComputeNormal(const Double_t *point, const Double_t *dir, Double_t *norm) const override
Normal computation in POINT. The orientation is chosen so that DIR.dot.NORM>0.
Double_t DistFromInside(const Double_t *point, const Double_t *dir, Int_t iact=1, Double_t step=0, Double_t *safe=nullptr) const override
Compute distance from a given point inside to the shape boundary.
void Paint(Option_t *option) override
Paint method.
~TGeoIntersection() override
Destructor — deletion of components handled by TGeoManager class.
Bool_t Contains(const Double_t *point) const override
Find if a intersection of two shapes contains a given point.
Geometrical transformation package.
Definition TGeoMatrix.h:39
Base abstract class for all shapes.
Definition TGeoShape.h:25
Boolean node representing a subtraction.
TGeoSubtraction()
Default constructor.
void ComputeBBox(Double_t &dx, Double_t &dy, Double_t &dz, Double_t *origin) override
Compute bounding box corresponding to a subtraction of two shapes.
~TGeoSubtraction() override
Destructor — deletion of components handled by TGeoManager class.
Double_t Safety(const Double_t *point, Bool_t in=kTRUE) const override
Compute safety distance for a union node;.
TGeoBoolNode * MakeClone() const override
Make a clone of this. Pointers are preserved.
Double_t DistFromOutside(const Double_t *point, const Double_t *dir, Int_t iact=1, Double_t step=0, Double_t *safe=nullptr) const override
Compute distance from a given point outside to the shape.
void SavePrimitive(std::ostream &out, Option_t *option="") override
Save a primitive as a C++ statement(s) on output stream "out".
Bool_t Contains(const Double_t *point) const override
Find if a subtraction of two shapes contains a given point.
void Sizeof3D() const override
Register 3D size of this shape.
Double_t DistFromInside(const Double_t *point, const Double_t *dir, Int_t iact=1, Double_t step=0, Double_t *safe=nullptr) const override
Compute distance from a given point inside to the shape boundary.
void Paint(Option_t *option) override
Paint method.
Int_t DistanceToPrimitive(Int_t px, Int_t py) override
Compute minimum distance to shape vertices.
void ComputeNormal(const Double_t *point, const Double_t *dir, Double_t *norm) const override
Normal computation in POINT. The orientation is chosen so that DIR.dot.NORM>0.
EGeoBoolType GetBooleanOperator() const override
Boolean node representing a union between two components.
Int_t DistanceToPrimitive(Int_t px, Int_t py) override
Compute minimum distance to shape vertices.
TGeoBoolNode * MakeClone() const override
Make a clone of this. Pointers are preserved.
void ComputeBBox(Double_t &dx, Double_t &dy, Double_t &dz, Double_t *origin) override
Compute bounding box corresponding to a union of two shapes.
void ComputeNormal(const Double_t *point, const Double_t *dir, Double_t *norm) const override
Normal computation in POINT. The orientation is chosen so that DIR.dot.NORM>0.
Double_t DistFromOutside(const Double_t *point, const Double_t *dir, Int_t iact=1, Double_t step=0, Double_t *safe=nullptr) const override
Compute distance from a given outside point to the shape.
Bool_t Contains(const Double_t *point) const override
Find if a union of two shapes contains a given point.
Double_t Safety(const Double_t *point, Bool_t in=kTRUE) const override
Compute safety distance for a union node;.
EGeoBoolType GetBooleanOperator() const override
Double_t DistFromInside(const Double_t *point, const Double_t *dir, Int_t iact=1, Double_t step=0, Double_t *safe=nullptr) const override
Computes distance from a given point inside the shape to its boundary.
~TGeoUnion() override
Destructor — deletion of components handled by TGeoManager class.
TGeoUnion()
Default constructor.
void Paint(Option_t *option) override
Paint method.
void SavePrimitive(std::ostream &out, Option_t *option="") override
Save a primitive as a C++ statement(s) on output stream "out".
void Sizeof3D() const override
Register 3D size of this shape.
Mother of all ROOT objects.
Definition TObject.h:41