Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
overlay_test.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_eve
3/// Demonstrates usage of TEveBox class.
4///
5/// \image html eve_box.png
6/// \macro_code
7///
8/// \author Matevz Tadel
9#include <ROOT/REveBox.hxx>
10#include <ROOT/REveScene.hxx>
11#include <ROOT/REveManager.hxx>
13#include <ROOT/REveTrack.hxx>
14#include <ROOT/REveJetCone.hxx>
15#include <ROOT/REveText.hxx>
16
17
18using namespace ROOT::Experimental;
19const Double_t kR_min = 240;
20const Double_t kR_max = 250;
21const Double_t kZ_d = 300;
22
23void makeTracks(int N_Tracks,REveElement* trackHolder)
24{
25 TRandom &r = *gRandom;
26 auto prop = new REveTrackPropagator();
27 prop->SetMagFieldObj(new REveMagFieldDuo(350, 3.5, -2.0));
28 prop->SetMaxR(300);
29 prop->SetMaxZ(600);
30 prop->SetMaxOrbs(6);
31 // Default is kHelix propagator.
32 // prop->SetStepper(REX::REveTrackPropagator::kRungeKutta);
33
34 double v = 0.5;
35 double m = 5;
36
37 for (int i = 0; i < N_Tracks; i++)
38 {
39 auto p = new TParticle();
40
41 int pdg = 11 * (r.Integer(2) > 0 ? 1 : -1);
42 p->SetPdgCode(pdg);
43
44 p->SetProductionVertex(r.Uniform(-v,v), r.Uniform(-v,v), r.Uniform(-v,v), 1);
45 p->SetMomentum(r.Uniform(-m,m), r.Uniform(-m,m), r.Uniform(-m,m)*r.Uniform(1, 3), 1);
46 auto track = new REveTrack(p, 1, prop);
47 track->MakeTrack();
48 track->SetMainColor(kBlue);
49 track->SetName(Form("RandomTrack_%d", i));
50 track->SetLineWidth(3);
51 trackHolder->AddElement(track);
52 }
53}
54
55REveElement* makeBox(Float_t a=10, Float_t d=5, Float_t x=0, Float_t y=0, Float_t z=0)
56{
57
58 TRandom& r = * gRandom;
59 auto b = new REveBox;
60 b->SetMainColor(kCyan);
61 b->SetMainTransparency(0);
62
63#define RND_BOX(x) r.Uniform(-(x), (x))
64 b->SetVertex(0, x - a + RND_BOX(d), y - a + RND_BOX(d), z - a + RND_BOX(d));
65 b->SetVertex(1, x - a + RND_BOX(d), y + a + RND_BOX(d), z - a + RND_BOX(d));
66 b->SetVertex(2, x + a + RND_BOX(d), y + a + RND_BOX(d), z - a + RND_BOX(d));
67 b->SetVertex(3, x + a + RND_BOX(d), y - a + RND_BOX(d), z - a + RND_BOX(d));
68 b->SetVertex(4, x - a + RND_BOX(d), y - a + RND_BOX(d), z + a + RND_BOX(d));
69 b->SetVertex(5, x - a + RND_BOX(d), y + a + RND_BOX(d), z + a + RND_BOX(d));
70 b->SetVertex(6, x + a + RND_BOX(d), y + a + RND_BOX(d), z + a + RND_BOX(d));
71 b->SetVertex(7, x + a + RND_BOX(d), y - a + RND_BOX(d), z + a + RND_BOX(d));
72#undef RND_BOX
73
74 return b;
75}
76
77
78void makeJets(int N_Jets, REveElement *jetHolder)
79{
80 TRandom &r = *gRandom;
81
82 for (int i = 0; i < N_Jets; i++)
83 {
84 auto jet = new REveJetCone(Form("Jet_%d",i ));
85 jet->SetCylinder(2*kR_max, 2*kZ_d);
86 jet->AddEllipticCone(r.Uniform(-0.5, 0.5), r.Uniform(0, TMath::TwoPi()),
87 0.1, 0.2);
88 jet->SetFillColor(kRed);
89 jet->SetLineColor(kRed);
90
91 jetHolder->AddElement(jet);
92 }
93}
94
95void makeTexts(REveElement *textHolder)
96{
97 {
98 auto text = new REveText(Form("Text_0"));
99 text -> SetMainColor(kViolet);
100 REveVector pos(0.5, 0.5, 0.2);
101 text -> SetPosition(pos);
102 text -> SetFontSize(0.1);
103 text -> SetFont(2);
104 text -> SetText(text->GetCName());
105 textHolder->AddElement(text);
106 }
107}
108
109
110void overlay_test()
111{
112 auto gEve = REveManager::Create();
113
114 TRandom& r = * gRandom;
115
116 // create an overlay scene
117 REveScene* os = gEve->SpawnNewScene("Overly scene", "OverlayTitle");
118 ((REveViewer*)(gEve->GetViewers()->FirstChild()))->AddScene(os);
119 os->SetIsOverlay(true);
120
121 makeTexts(os);
122
123 auto jetHolder = new REveElement("jets");
124 makeJets(2,jetHolder);
125 gEve->GetEventScene()->AddElement(jetHolder);
126
127 auto trackHolder = new REveElement("Tracks");
128 gEve->GetEventScene()->AddElement(trackHolder);
129 makeTracks(10, trackHolder);
130
131 gEve->Show();
132}
#define d(i)
Definition RSha256.hxx:102
#define b(i)
Definition RSha256.hxx:100
#define a(i)
Definition RSha256.hxx:99
float Float_t
Definition RtypesCore.h:57
double Double_t
Definition RtypesCore.h:59
@ kRed
Definition Rtypes.h:66
@ kCyan
Definition Rtypes.h:66
@ kBlue
Definition Rtypes.h:66
@ kViolet
Definition Rtypes.h:67
R__EXTERN TEveManager * gEve
winID h TVirtualViewer3D TVirtualGLPainter p
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 r
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 prop
Option_t Option_t TPoint TPoint const char text
R__EXTERN TRandom * gRandom
Definition TRandom.h:62
char * Form(const char *fmt,...)
Formats a string in a circular formatting buffer.
Definition TString.cxx:2489
3D box with arbitrary vertices (cuboid).
Base class for REveUtil visualization elements, providing hierarchy management, rendering control and...
Draws a jet cone with leading particle is specified in (eta,phi) and cone radius is given.
Implements constant magnetic filed that switches on given axial radius fR2 from vector fBIn to fBOut.
Eve representation of TGLScene.
Holding structure for a number of track rendering parameters.
Visual representation of a track.
Eve representation of a GL view.
virtual void AddElement(TEveElement *el)
Add el to the list of children.
TEveElement * FirstChild() const
Returns the first child element or 0 if the list is empty.
TEveViewerList * GetViewers() const
TEveScene * SpawnNewScene(const char *name, const char *title="")
Create a new scene.
TEveScene * GetEventScene() const
Description of the dynamic properties of a particle.
Definition TParticle.h:26
This is the base class for the ROOT Random number generators.
Definition TRandom.h:27
#define RND_BOX(x)
void makeTracks(int N_Tracks, REveElement *trackHolder, float *pos)
const Double_t kR_max
const Double_t kZ_d
const Double_t kR_min
void makeJets(int N_Jets, REX::REveElement *jetHolder)
Definition jets.C:21
Double_t y[n]
Definition legend1.C:17
Double_t x[n]
Definition legend1.C:17
constexpr Double_t TwoPi()
Definition TMath.h:44
TMarker m
Definition textangle.C:8
void makeTexts(int N_Texts, REX::REveElement *textHolder)
Definition texts.C:36