Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
REveGeoShape.cxx
Go to the documentation of this file.
1// @(#)root/eve7:$Id$
2// Author: Matevz Tadel 2007, 2018
3
4/*************************************************************************
5 * Copyright (C) 1995-2019, 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#include <ROOT/REveGeoShape.hxx>
13#include <ROOT/REveUtil.hxx>
14#include <ROOT/REveTrans.hxx>
15#include <ROOT/REveManager.hxx>
19
23
24#include "TROOT.h"
25#include "TBuffer3D.h"
26#include "TBuffer3DTypes.h"
27#include "TColor.h"
28#include "TFile.h"
29
30#include "TGeoShape.h"
31#include "TGeoVolume.h"
32#include "TGeoNode.h"
33#include "TGeoShapeAssembly.h"
34#include "TGeoCompositeShape.h"
35#include "TGeoBoolNode.h"
36#include "TGeoManager.h"
37#include "TGeoMatrix.h"
38#include "TVirtualGeoPainter.h"
39
40
41namespace
42{
43 TGeoManager* init_geo_mangeur()
44 {
45 // Create a phony geo manager that can be used for storing free
46 // shapes. Otherwise shapes register themselves to current
47 // geo-manager (or even create one).
48
50 TGeoIdentity *old_id = gGeoIdentity;
51 gGeoManager = nullptr;
52 TGeoManager* mgr = new TGeoManager();
53 mgr->SetNameTitle("REveGeoShape::fgGeoManager",
54 "Static geo manager used for wrapped TGeoShapes.");
55 gGeoIdentity = new TGeoIdentity("Identity");
56 gGeoManager = old;
57 gGeoIdentity = old_id;
58 return mgr;
59 }
60
61 TGeoHMatrix localGeoHMatrixIdentity;
62}
63
64using namespace ROOT::Experimental;
65namespace REX = ROOT::Experimental;
66
67/** \class REveGeoShape
68\ingroup REve
69Wrapper for TGeoShape with absolute positioning and color
70attributes allowing display of extracted TGeoShape's (without an
71active TGeoManager) and simplified geometries (needed for non-linear
72projections).
73
74TGeoCompositeShapes and TGeoAssemblies are supported.
75
76If fNSegments data-member is < 2 (0 by default), the default number of
77segments is used for tesselation and special GL objects are
78instantiated for selected shapes (spheres, tubes). If fNSegments is > 2,
79it gets forwarded to geo-manager and this tesselation detail is
80used when creating the buffer passed to GL.
81*/
82
83TGeoManager *REveGeoShape::fgGeoManager = init_geo_mangeur();
84
85////////////////////////////////////////////////////////////////////////////////
86/// Return static geo-manager that is used internally to make shapes
87/// lead a happy life.
88/// Set gGeoManager to this object when creating TGeoShapes to be
89/// passed into EveGeoShapes.
90
91TGeoManager *REveGeoShape::GetGeoManager()
92{
93 return fgGeoManager;
94}
95
96////////////////////////////////////////////////////////////////////////////////
97/// Return static identity matrix in homogeneous representation.
98/// This is needed because TGeoCompositeShape::PaintComposite()
99/// assumes TGeoShape::fgTransform is a TGeoHMatrix and we need to pass in
100/// an identity matrix when painting a composite shape.
101
103{
104 return &localGeoHMatrixIdentity;
105}
106
107////////////////////////////////////////////////////////////////////////////////
108/// Constructor.
109
110REveGeoShape::REveGeoShape(const std::string &name, const std::string &title)
111 : REveShape(name, title), fNSegments(0), fShape(nullptr), fCompositeShape(nullptr)
112{
114}
115
116////////////////////////////////////////////////////////////////////////////////
117/// Destructor.
118
120{
121 SetShape(nullptr);
122}
123
124////////////////////////////////////////////////////////////////////////////////
125/// Create derived REveGeoShape form a TGeoCompositeShape.
126
128{
129 auto poly = new REveGeoPolyShape();
130 poly->BuildFromComposite(fCompositeShape, fNSegments);
131 return poly;
132}
133
134////////////////////////////////////////////////////////////////////////////////
135/// Fill core part of JSON representation.
136
137Int_t REveGeoShape::WriteCoreJson(nlohmann::json &j, Int_t rnr_offset)
138{
139 return REveShape::WriteCoreJson(j, rnr_offset);
140}
141
142////////////////////////////////////////////////////////////////////////////////
143/// Crates 3D point array for rendering.
144
146{
147 if (!fShape) return;
148
149 REveGeoPolyShape *egps = nullptr;
150 std::unique_ptr<REveGeoPolyShape> tmp_egps;
151
152 if (fCompositeShape) {
153
154 egps = dynamic_cast<REveGeoPolyShape *>(fShape);
155
156 } else {
157
158 tmp_egps = std::make_unique<REveGeoPolyShape>();
159
160 tmp_egps->BuildFromShape(fShape, fNSegments);
161
162 egps = tmp_egps.get();
163 }
164
165 fRenderData = std::make_unique<REveRenderData>("makeEveGeoShape");
166
169}
170
171////////////////////////////////////////////////////////////////////////////////
172/// Set number of segments.
173
175{
176 if (s != fNSegments && fCompositeShape != nullptr) {
177 delete fShape;
179 }
180 fNSegments = s;
181}
182
183////////////////////////////////////////////////////////////////////////////////
184/// Set TGeoShape shown by this object.
185///
186/// The shape is owned by REveGeoShape but TGeoShape::fUniqueID is
187/// used for reference counting so you can pass the same shape to
188/// several EveGeoShapes.
189///
190/// If it if is taken from an existing TGeoManager, manually
191/// increase the fUniqueID before passing it to REveGeoShape.
192
194{
196
197 if (fCompositeShape) {
198 delete fShape;
200 }
201
202 if (fShape) {
204 if (fShape->GetUniqueID() == 0) {
205 delete fShape;
206 }
207 }
208
209 fShape = s;
210
211 if (fShape) {
213 fCompositeShape = dynamic_cast<TGeoCompositeShape *>(fShape);
214 if (fCompositeShape) {
216 }
217 }
218}
219
220////////////////////////////////////////////////////////////////////////////////
221/// Compute bounding-box.
222
224{
225 TGeoBBox *bb = dynamic_cast<TGeoBBox *>(fShape);
226 if (bb) {
227 BBoxInit();
228 const Double_t *o = bb->GetOrigin();
229 BBoxCheckPoint(o[0] - bb->GetDX(), o[0] - bb->GetDY(), o[0] - bb->GetDZ());
230 BBoxCheckPoint(o[0] + bb->GetDX(), o[0] + bb->GetDY(), o[0] + bb->GetDZ());
231 } else {
232 BBoxZero();
233 }
234}
235
236////////////////////////////////////////////////////////////////////////////////
237/// Save the shape tree as REveGeoShapeExtract.
238/// File is always recreated.
239
240void REveGeoShape::SaveExtract(const char* file, const char* name)
241{
242 // FIXME: ownership
243 REveGeoShapeExtract* gse = DumpShapeTree(this, nullptr);
244
245 TFile f(file, "RECREATE");
246 gse->Write(name);
247 f.Close();
248}
249
250////////////////////////////////////////////////////////////////////////////////
251/// Write the shape tree as REveGeoShapeExtract to current directory.
252/// FIXME: SL: no any write into gDirectory
253
255{
256 // FIXME: ownership
257 REveGeoShapeExtract* gse = DumpShapeTree(this, nullptr);
258 gse->Write(name);
259}
260
261////////////////////////////////////////////////////////////////////////////////
262/// Export this shape and its descendants into a geoshape-extract.
263
265 REveGeoShapeExtract* parent)
266{
267 REveGeoShapeExtract* she = new REveGeoShapeExtract(gsre->GetCName(), gsre->GetCTitle());
268 she->SetTrans(gsre->RefMainTrans().Array());
269 {
270 Int_t ci = gsre->GetFillColor();
271 TColor *c = gROOT->GetColor(ci);
272 Float_t rgba[4] = { 1, 0, 0, Float_t(1 - gsre->GetMainTransparency()/100.) };
273 if (c)
274 {
275 rgba[0] = c->GetRed();
276 rgba[1] = c->GetGreen();
277 rgba[2] = c->GetBlue();
278 }
279 she->SetRGBA(rgba);
280 }
281 {
282 Int_t ci = gsre->GetLineColor();
283 TColor *c = gROOT->GetColor(ci);
284 Float_t rgba[4] = { 1, 0, 0, 1 };
285 if (c)
286 {
287 rgba[0] = c->GetRed();
288 rgba[1] = c->GetGreen();
289 rgba[2] = c->GetBlue();
290 }
291 she->SetRGBALine(rgba);
292 }
293 she->SetRnrSelf(gsre->GetRnrSelf());
294 she->SetRnrElements(gsre->GetRnrChildren());
295 she->SetRnrFrame(gsre->GetDrawFrame());
296 she->SetMiniFrame(gsre->GetMiniFrame());
297 she->SetShape(gsre->GetShape());
298 if (gsre->HasChildren())
299 {
300 TList* ele = new TList();
301 she->SetElements(ele);
302 she->GetElements()->SetOwner(true);
303
304 for (auto &c: gsre->RefChildren())
305 DumpShapeTree(dynamic_cast<REveGeoShape *>(c), she);
306 }
307 if (parent)
308 parent->GetElements()->Add(she);
309
310 return she;
311}
312
313////////////////////////////////////////////////////////////////////////////////
314/// Import a shape extract 'gse' under element 'parent'.
315
317 REveElement* parent)
318{
321 REveGeoShape* gsre = SubImportShapeExtract(gse, parent);
322 gsre->StampObjProps();
323 return gsre;
324}
325
326////////////////////////////////////////////////////////////////////////////////
327/// Recursive version for importing a shape extract tree.
328
330 REveElement* parent)
331{
332 REveGeoShape* gsre = new REveGeoShape(gse->GetName(), gse->GetTitle());
333 gsre->RefMainTrans().SetFromArray(gse->GetTrans());
334 const Float_t* rgba = gse->GetRGBA();
335 gsre->SetMainColorRGB(rgba[0], rgba[1], rgba[2]);
336 gsre->SetMainAlpha(rgba[3]);
337 rgba = gse->GetRGBALine();
338 gsre->SetLineColor(TColor::GetColor(rgba[0], rgba[1], rgba[2]));
339 gsre->SetRnrSelf(gse->GetRnrSelf());
340 gsre->SetRnrChildren(gse->GetRnrElements());
341 gsre->SetDrawFrame(gse->GetRnrFrame());
342 gsre->SetMiniFrame(gse->GetMiniFrame());
343 gsre->SetShape(gse->GetShape());
344
345 if (parent)
346 parent->AddElement(gsre);
347
348 if (gse->HasElements())
349 {
350 TIter next(gse->GetElements());
352 while ((chld = (REveGeoShapeExtract*) next()) != nullptr)
353 SubImportShapeExtract(chld, gsre);
354 }
355
356 return gsre;
357}
358
359////////////////////////////////////////////////////////////////////////////////
360/// Return class for projected objects:
361/// - 2D projections: REvePolygonSetProjected,
362/// - 3D projections: REveGeoShapeProjected.
363/// Virtual from REveProjectable.
364
366{
367 if (p->Is2D())
368 return TClass::GetClass<REvePolygonSetProjected>();
369 else
370 return TClass::GetClass<REveGeoShapeProjected>();
371}
372
373////////////////////////////////////////////////////////////////////////////////
374/// Create a TBuffer3D suitable for presentation of the shape.
375/// Transformation matrix is also applied.
376
377std::unique_ptr<TBuffer3D> REveGeoShape::MakeBuffer3D()
378{
379 std::unique_ptr<TBuffer3D> buff;
380
381 if (!fShape) return buff;
382
383 if (dynamic_cast<TGeoShapeAssembly*>(fShape)) {
384 // TGeoShapeAssembly makes a bad TBuffer3D.
385 return buff;
386 }
387
389
390 buff.reset(fShape->MakeBuffer3D());
391 REveTrans &mx = RefMainTrans();
392 if (mx.GetUseTrans()) {
393 Int_t n = buff->NbPnts();
394 Double_t *pnts = buff->fPnts;
395 for(Int_t k = 0; k < n; ++k) {
396 mx.MultiplyIP(&pnts[3*k]);
397 }
398 }
399 return buff;
400}
401
402
403//==============================================================================
404// REveGeoShapeProjected
405//==============================================================================
406
407/** \class REveGeoShapeProjected
408\ingroup REve
409A 3D projected REveGeoShape.
410*/
411
412////////////////////////////////////////////////////////////////////////////////
413/// Constructor.
414
416 REveShape("REveGeoShapeProjected"),
417 fBuff()
418{
419}
420
421////////////////////////////////////////////////////////////////////////////////
422/// Destructor.
423
425{
426 /// should be here because of TBuffer3D destructor
427}
428
429
430////////////////////////////////////////////////////////////////////////////////
431/// This should never be called as this class is only used for 3D
432/// projections.
433/// The implementation is required as this metod is abstract.
434/// Just emits a warning if called.
435
437{
438 Warning("SetDepthLocal", "This function only exists to fulfill an abstract interface.");
439}
440
441////////////////////////////////////////////////////////////////////////////////
442/// This is virtual method from base-class REveProjected.
443
445 REveProjectable* model)
446{
448
449 REveGeoShape* gre = dynamic_cast<REveGeoShape*>(fProjectable);
450 CopyVizParams(gre);
451}
452
453////////////////////////////////////////////////////////////////////////////////
454/// This is virtual method from base-class REveProjected.
455
457{
458 REveGeoShape *gre = dynamic_cast<REveGeoShape*>(fProjectable);
460
461 fBuff = gre->MakeBuffer3D();
462
463 if (fBuff)
464 {
466
467 Double_t *p = fBuff->fPnts;
468 for (UInt_t i = 0; i < fBuff->NbPnts(); ++i, p+=3)
469 {
470 prj->ProjectPointdv(p, 0);
471 }
472 }
473
474 ResetBBox();
475}
476
477////////////////////////////////////////////////////////////////////////////////
478/// Override of virtual method from TAttBBox.
479
481{
482 if (fBuff && fBuff->NbPnts() > 0)
483 {
484 BBoxInit();
485
486 Double_t *p = fBuff->fPnts;
487 for (UInt_t i = 0; i < fBuff->NbPnts(); ++i, p+=3)
488 {
489 BBoxCheckPoint(p[0], p[1], p[2]);
490 }
491 }
492 else
493 {
494 BBoxZero();
495 }
496}
#define f(i)
Definition RSha256.hxx:104
#define c(i)
Definition RSha256.hxx:101
float Float_t
Definition RtypesCore.h:57
void Warning(const char *location, const char *msgfmt,...)
Use this function in warning situations.
Definition TError.cxx:231
char name[80]
Definition TGX11.cxx:110
R__EXTERN TGeoManager * gGeoManager
R__EXTERN TGeoIdentity * gGeoIdentity
Definition TGeoMatrix.h:478
#define gROOT
Definition TROOT.h:406
const char * GetCTitle() const
virtual REveTrans & RefMainTrans()
Return reference to main transformation.
void SetMainColorRGB(UChar_t r, UChar_t g, UChar_t b)
Convert RGB values to Color_t and call SetMainColor.
void SetMainAlpha(Float_t alpha)
Set main-transparency via float alpha variable.
const char * GetCName() const
virtual void AddElement(REveElement *el)
Add el to the list of children.
virtual Bool_t GetRnrSelf() const
virtual Bool_t SetRnrChildren(Bool_t rnr)
Set render state of this element's children, i.e.
virtual void InitMainTrans(Bool_t can_edit=kTRUE)
Initialize the main transformation to identity matrix.
std::unique_ptr< REveRenderData > fRenderData
Externally assigned and controlled user data.
virtual Char_t GetMainTransparency() const
virtual Bool_t SetRnrSelf(Bool_t rnr)
Set render state of this element, i.e.
virtual Bool_t GetRnrChildren() const
virtual void BuildRenderData()
Write transformation Matrix to render data.
REveGeoManagerHolder Exception-safe global variable holders.
Definition REveUtil.hxx:91
void SetRGBA(const Float_t arr[4])
Set RGBA color.
void SetTrans(const Double_t arr[16])
Set transformation matrix.
Bool_t HasElements()
True if has at least one element.
void SetRGBALine(const Float_t arr[4])
Set RGBA color for line.
void ComputeBBox() override
Override of virtual method from TAttBBox.
std::unique_ptr< TBuffer3D > fBuff
void SetProjection(REveProjectionManager *proj, REveProjectable *model) override
This is virtual method from base-class REveProjected.
void UpdateProjection() override
This is virtual method from base-class REveProjected.
void SetDepthLocal(Float_t d) override
3d buffer
static REveGeoShape * ImportShapeExtract(REveGeoShapeExtract *gse, REveElement *parent=nullptr)
Import a shape extract 'gse' under element 'parent'.
TGeoShape * MakePolyShape()
Create derived REveGeoShape form a TGeoCompositeShape.
static TGeoManager * fgGeoManager
Temporary holder (if passed shape is composite shape).
void SetNSegments(Int_t s)
Set number of segments.
void SaveExtract(const char *file, const char *name)
Save the shape tree as REveGeoShapeExtract.
TClass * ProjectedClass(const REveProjection *p) const override
Return class for projected objects:
static REveGeoShape * SubImportShapeExtract(REveGeoShapeExtract *gse, REveElement *parent)
Recursive version for importing a shape extract tree.
Int_t WriteCoreJson(nlohmann::json &j, Int_t rnr_offset) override
Fill core part of JSON representation.
void ComputeBBox() override
Compute bounding-box.
void WriteExtract(const char *name)
Write the shape tree as REveGeoShapeExtract to current directory.
void SetShape(TGeoShape *s)
Set TGeoShape shown by this object.
virtual ~REveGeoShape()
Destructor.
virtual std::unique_ptr< TBuffer3D > MakeBuffer3D()
Create a TBuffer3D suitable for presentation of the shape.
void BuildRenderData() override
Crates 3D point array for rendering.
static TGeoHMatrix * GetGeoHMatrixIdentity()
Return static identity matrix in homogeneous representation.
REveGeoShape(const REveGeoShape &)=delete
TGeoCompositeShape * fCompositeShape
REveGeoShapeExtract * DumpShapeTree(REveGeoShape *geon, REveGeoShapeExtract *parent=nullptr)
Export this shape and its descendants into a geoshape-extract.
virtual void SetProjection(REveProjectionManager *mng, REveProjectable *model)
Sets projection manager and reference in the projectable object.
REveProjectionManager Manager class for steering of projections and managing projected objects.
REveProjection Base for specific classes that implement non-linear projections.
void ProjectPointdv(Double_t *v, Float_t d)
Project double array.
virtual Bool_t Is2D() const =0
void CopyVizParams(const REveElement *el) override
Copy visualization parameters from element el.
Definition REveShape.cxx:84
virtual void SetMiniFrame(Bool_t r)
Definition REveShape.hxx:69
virtual void SetLineColor(Color_t c)
Definition REveShape.hxx:65
virtual Color_t GetFillColor() const
Definition REveShape.hxx:57
Int_t WriteCoreJson(nlohmann::json &j, Int_t rnr_offset) override
Fill core part of JSON representation.
Definition REveShape.cxx:55
virtual Bool_t GetDrawFrame() const
Definition REveShape.hxx:60
virtual Color_t GetLineColor() const
Definition REveShape.hxx:58
virtual Bool_t GetMiniFrame() const
Definition REveShape.hxx:62
virtual void SetDrawFrame(Bool_t f)
Definition REveShape.hxx:67
void MultiplyIP(TVector3 &v, Double_t w=1) const
Multiply vector in-place.
void SetFromArray(const Double_t arr[16])
Set matrix from Double_t array.
void BBoxCheckPoint(Float_t x, Float_t y, Float_t z)
Definition TAttBBox.h:58
void ResetBBox()
Definition TAttBBox.h:46
void BBoxZero(Float_t epsilon=0, Float_t x=0, Float_t y=0, Float_t z=0)
Create cube of volume (2*epsilon)^3 at (x,y,z).
Definition TAttBBox.cxx:42
void BBoxInit(Float_t infinity=1e6)
Dynamic Float_t[6] X(min,max), Y(min,max), Z(min,max)
Definition TAttBBox.cxx:29
TClass instances represent classes, structs and namespaces in the ROOT type system.
Definition TClass.h:80
virtual void SetOwner(Bool_t enable=kTRUE)
Set whether this collection is the owner (enable==true) of its content.
The color creation and management class.
Definition TColor.h:19
static Int_t GetColor(const char *hexcolor)
Static method returning color number for color specified by hex color string of form: "#rrggbb",...
Definition TColor.cxx:1769
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format.
Definition TFile.h:54
Box class.
Definition TGeoBBox.h:18
virtual const Double_t * GetOrigin() const
Definition TGeoBBox.h:73
virtual Double_t GetDX() const
Definition TGeoBBox.h:70
virtual Double_t GetDZ() const
Definition TGeoBBox.h:72
virtual Double_t GetDY() const
Definition TGeoBBox.h:71
Class handling Boolean composition of shapes.
Matrix class used for computing global transformations Should NOT be used for node definition.
Definition TGeoMatrix.h:421
An identity transformation.
Definition TGeoMatrix.h:384
The manager class for any TGeo geometry.
Definition TGeoManager.h:45
The shape encapsulating an assembly (union) of volumes.
Base abstract class for all shapes.
Definition TGeoShape.h:26
virtual TBuffer3D * MakeBuffer3D() const
Definition TGeoShape.h:143
A doubly linked list.
Definition TList.h:44
virtual void Add(TObject *obj)
Definition TList.h:87
virtual const char * GetTitle() const
Returns title of object.
Definition TNamed.h:48
virtual const char * GetName() const
Returns name of object.
Definition TNamed.h:47
virtual void SetNameTitle(const char *name, const char *title)
Set all the TNamed parameters (name and title).
Definition TNamed.cxx:154
virtual Int_t Write(const char *name=0, Int_t option=0, Int_t bufsize=0)
Write this object to the current directory.
Definition TObject.cxx:798
virtual UInt_t GetUniqueID() const
Return the unique object id.
Definition TObject.cxx:377
virtual void SetUniqueID(UInt_t uid)
Set the unique object id.
Definition TObject.cxx:707
const Int_t n
Definition legend1.C:16
R__EXTERN REveManager * gEve
Definition file.py:1