Logo ROOT  
Reference Guide
Loading...
Searching...
No Matches

Detailed Description

Demonstrates usage of TEveBoxSet class.

#include "TRandom.h"
using namespace ROOT::Experimental;
std::string customTooltip(const ROOT::Experimental::REveDigitSet *digitSet, int n)
{
auto d = digitSet->GetDigit(n);
return TString::Format("Custom tooltip:\n value %d idx %d\n", d->fValue, n).Data();
}
REveBoxSet *boxset_free(Int_t num = 100)
{
TRandom r(0);
auto pal = new REveRGBAPalette(0, 130);
pal->SetMin(80);
auto q = new REveBoxSet("BoxSet");
q->SetPalette(pal);
#define RND_BOX(x) (Float_t) r.Uniform(-(x), (x))
const float R = 500;
const float A = 40;
const float D = 1;
for (int i = 0; i < num; ++i) {
float x = RND_BOX(R);
float y = RND_BOX(R);
float z = RND_BOX(R);
float a = r.Uniform(0.2 * A, A);
float d = D;
float verts[24] = {x - a + RND_BOX(d), y - a + RND_BOX(d), z - a + RND_BOX(d), x - a + RND_BOX(d),
y + a + RND_BOX(d), z - a + RND_BOX(d), x + a + RND_BOX(d), y + a + RND_BOX(d),
z - a + RND_BOX(d), x + a + RND_BOX(d), y - a + RND_BOX(d), z - a + RND_BOX(d),
x - a + RND_BOX(d), y - a + RND_BOX(d), z + a + RND_BOX(d), x - a + RND_BOX(d),
y + a + RND_BOX(d), z + a + RND_BOX(d), x + a + RND_BOX(d), y + a + RND_BOX(d),
z + a + RND_BOX(d), x + a + RND_BOX(d), y - a + RND_BOX(d), z + a + RND_BOX(d)};
q->AddFreeBox(verts);
q->DigitValue(r.Uniform(0, 130));
}
q->RefitPlex();
#undef RND_BOX
// Uncomment these two lines to get internal highlight / selection.
q->SetPickable(1);
q->SetAlwaysSecSelect(1);
q->SetTooltipCBFoo(customTooltip);
return q;
}
REveBoxSet *boxset_axisaligned(Float_t x = 0, Float_t y = 0, Float_t z = 0, Int_t num = 100)
{
TRandom r(0);
auto pal = new REveRGBAPalette(0, 130);
auto frm = new REveFrameBox();
frm->SetAABoxCenterHalfSize(0, 0, 0, 12, 12, 12);
frm->SetFrameColor(kCyan);
frm->SetBackColorRGBA(120, 120, 120, 20);
frm->SetDrawBack(kTRUE);
auto q = new REveBoxSet("BoxSet");
q->SetPalette(pal);
q->SetFrame(frm);
for (Int_t i = 0; i < num; ++i) {
q->AddInstanceScaled(r.Uniform(-10, 10), r.Uniform(-10, 10), r.Uniform(-10, 10), r.Uniform(0.2, 1),
r.Uniform(0.2, 1), r.Uniform(0.2, 1));
q->DigitValue(r.Uniform(0, 130));
}
q->RefitPlex();
REveTrans &t = q->RefMainTrans();
t.SetPos(x, y, z);
// Uncomment these two lines to get internal highlight / selection.
q->SetPickable(1);
q->SetAlwaysSecSelect(1);
q->SetTooltipCBFoo(customTooltip);
return q;
}
REveBoxSet *boxset_colisval(Float_t x = 0, Float_t y = 0, Float_t z = 0, Int_t num = 100)
{
TRandom r(0);
auto q = new REveBoxSet("BoxSet");
for (Int_t i = 0; i < num; ++i) {
q->AddInstanceScaled(r.Uniform(-10, 10), r.Uniform(-10, 10), r.Uniform(-10, 10), r.Uniform(0.2, 1),
r.Uniform(0.2, 1), r.Uniform(0.2, 1));
q->DigitColor(r.Uniform(20, 255), r.Uniform(20, 255), r.Uniform(20, 255), r.Uniform(20, 255));
}
q->RefitPlex();
REveTrans &t = q->RefMainTrans();
t.SetPos(x, y, z);
return q;
}
REveBoxSet *boxset_single_color(Float_t x = 0, Float_t y = 0, Float_t z = 0, Int_t num = 100)
{
TRandom r(0);
auto q = new REveBoxSet("BoxSet");
q->UseSingleColor();
q->SetMainColorPtr(new Color_t);
q->SetMainColor(kRed);
q->SetMainTransparency(50);
for (Int_t i = 0; i < num; ++i) {
q->AddInstanceScaled(r.Uniform(-10, 10), r.Uniform(-10, 10), r.Uniform(-10, 10), r.Uniform(0.2, 1),
r.Uniform(0.2, 1), r.Uniform(0.2, 1));
}
q->RefitPlex();
REveTrans &t = q->RefMainTrans();
t.SetPos(x, y, z);
return q;
}
REveBoxSet *boxset_fixed_dim(Float_t x = 0, Float_t y = 0, Float_t z = 0, Int_t num = 100)
{
TRandom r(0);
auto q = new REveBoxSet("BoxSet");
q->UseSingleColor();
q->SetMainColorPtr(new Color_t);
q->SetMainColor(kRed);
q->SetMainTransparency(50);
for (Int_t i = 0; i < num; ++i) {
q->AddInstance(r.Uniform(-10, 10), r.Uniform(-10, 10), r.Uniform(-10, 10));
}
q->RefitPlex();
q->SetPickable(1);
q->SetAlwaysSecSelect(1);
REveTrans &t = q->RefMainTrans();
t.SetPos(x, y, z);
return q;
}
REveBoxSet *boxset_hex(Float_t x = 0, Float_t y = 0, Float_t z = 0, Int_t num = 100)
{
TRandom r(0);
auto q = new REveBoxSet("BoxSet");
for (Int_t i = 0; i < num; ++i) {
q->AddHex(REveVector(r.Uniform(-10, 10), r.Uniform(-10, 10), r.Uniform(-10, 10)), r.Uniform(0.2, 1),
r.Uniform(0, 60), r.Uniform(0.2, 5));
q->DigitColor(r.Uniform(20, 255), r.Uniform(20, 255), r.Uniform(20, 255), r.Uniform(20, 255));
}
q->RefitPlex();
q->SetPickable(true);
q->SetAlwaysSecSelect(true);
REveTrans &t = q->RefMainTrans();
t.SetPos(x, y, z);
return q;
}
REveBoxSet *boxset_gentrans(Float_t x = 0, Float_t y = 0, Float_t z = 0, int num = 10)
{
auto q = new REveBoxSet("BoxSet-GenTrans");
TRandom r(0);
for (Int_t i = 0; i < num; ++i) {
// Create per digit transformation
float x = 50 - i * 10;
t.Move3LF(x, 0, 0);
t.Scale(1, 1, 10);
t.RotateLF(1, 2, r.Uniform(3.14));
// t.Print();
float farr[16];
for (int m = 0; m < 16; m++)
farr[m] = t.Array()[m];
q->AddInstanceMat4(farr);
q->DigitColor(255, 0, 0, 100); // AMT how the treansparency handled, last ergument alpha
}
q->RefitPlex();
q->SetPickable(true);
q->SetAlwaysSecSelect(true);
REveTrans &t = q->RefMainTrans();
t.SetPos(x, y, z);
return q;
}
void boxset()
{
enum EBoxDemo_t {
ScaledRotated,
Free,
AxisAligned,
Hexagon,
FixedDimension,
SingleColor
};
// EBoxDemo_t demo = ScaledRotated;
EBoxDemo_t demo = AxisAligned;
REveBoxSet *b = nullptr;
switch (demo) {
case ScaledRotated: b = boxset_gentrans(); break;
case Free: b = boxset_free(); break;
case AxisAligned: b = boxset_axisaligned(); break;
case FixedDimension: b = boxset_fixed_dim(); break;
case Hexagon: b = boxset_hex(); break;
case SingleColor: b = boxset_single_color(); break;
default: printf("Unsupported demo type. \n"); return;
}
eveMng->GetEventScene()->AddElement(b);
// Add palette to scene to be streamed and edited in controller
if (b->GetPalette())
eveMng->GetEventScene()->AddElement(b->GetPalette());
eveMng->Show();
REveViewer *v = ROOT::Experimental::gEve->GetDefaultViewer();
v->SetAxesType(REveViewer::kAxesOrigin);
// AMT temporary solution: add geo-shape to set scene bounding box
// digits at the moment have no bounding box calculation and lights are consequently
// in inital empty position at extend size of 1
auto b1 = new REveGeoShape("Bounding Box Barrel");
b1->SetShape(new TGeoTube(30, 32, 10));
b1->SetMainColor(kCyan);
b1->SetNSegments(80);
b1->SetMainTransparency(95);
ROOT::Experimental::gEve->GetGlobalScene()->AddElement(b1);
}
ROOT::R::TRInterface & r
Definition Object.C:4
#define d(i)
Definition RSha256.hxx:102
#define b(i)
Definition RSha256.hxx:100
#define a(i)
Definition RSha256.hxx:99
#define R(a, b, c, d, e, f, g, h, i)
Definition RSha256.hxx:110
int Int_t
Signed integer 4 bytes (int).
Definition RtypesCore.h:59
constexpr Bool_t kFALSE
Definition RtypesCore.h:108
short Color_t
Color number (short).
Definition RtypesCore.h:99
float Float_t
Float 4 bytes (float).
Definition RtypesCore.h:71
constexpr Bool_t kTRUE
Definition RtypesCore.h:107
@ kRed
Definition Rtypes.h:67
@ kCyan
Definition Rtypes.h:67
float * q
Collection of 3D primitives (fixed-size boxes, boxes of different sizes, or arbitrary sexto-epipeds,...
Description of a 2D or 3D frame that can be used to visually group a set of objects.
Wrapper for TGeoShape with absolute positioning and color attributes allowing display of extracted TG...
A generic, speed-optimised mapping from value to RGBA color supporting different wrapping and range t...
REveTrans is a 4x4 transformation matrix for homogeneous coordinates stored internally in a column-ma...
Eve representation of a GL view.
DigitBase_t * GetDigit(Int_t n) const
static REveManager * Create()
If global REveManager* REX::gEve is not set initialize it.
This is the base class for the ROOT Random number generators.
Definition TRandom.h:27
const char * Data() const
Definition TString.h:384
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
Definition TString.cxx:2385
ROOT::Experimental::REveManager * eveMng
#define RND_BOX(x)
Double_t y[n]
Definition legend1.C:17
Double_t x[n]
Definition legend1.C:17
const Int_t n
Definition legend1.C:16
Namespace for ROOT features in testing.
Definition TROOT.h:100
externREveManager * gEve
REveVectorT< Float_t > REveVector
TMarker m
Definition textangle.C:8
Author
Matevz Tadel

Definition in file boxset.C.