Logo ROOT  
Reference Guide
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Loading...
Searching...
No Matches
texts.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_eve_7
3/// This example display only texts in web browser
4///
5/// \macro_code
6///
7/// \author Waad Fahad
8
9#include "TRandom.h"
10#include <ROOT/REveElement.hxx>
11#include <ROOT/REveScene.hxx>
12#include <ROOT/REveManager.hxx>
13#include <ROOT/REveText.hxx>
14#include <ROOT/REveJetCone.hxx>
15
16namespace REX = ROOT::Experimental;
17
18using namespace ROOT::Experimental;
19
20// 1. Basic fonts
21// Text bluprs to choose from:
22const char *blurbs[] = {"Love", "Peace", "ROOT", "Code", "Courage", "Quiche"};
23const int n_blurbs = sizeof(blurbs) / sizeof(char *);
24
25// Some ROOT fonts are supper old and will error out (arial, times, cour).
26const char *fonts[] = {"comic", "comicbd", "verdana", "BlackChancery", "georgia", "georgiai"};
27const int n_fonts = sizeof(fonts) / sizeof(char *);
28
29// 2. Fonts with diacritcis and most greek letter available through unicode.
30// Not all fonts have them -- most that ship with ROOT don't.
31const char *blurbs2[] = {"Čüšék! Šèžëçàgïlá", "Αβρασαξ", "πφηθωμβτ"};
32const int n_blurbs2 = sizeof(blurbs2) / sizeof(char *);
33
34const char *fonts2[] = {"LiberationMono-Regular", "LiberationSerif-Regular"};
35const int n_fonts2 = sizeof(fonts2) / sizeof(char *);
36
38{
39 const double pi = TMath::Pi();
40 const double lim = 300;
41
42 TRandom &r = *gRandom;
43
44 for (int i = 0; i < N_Texts; i++) {
45 std::string word, font;
46 if (r.Integer(2)) {
47 word = blurbs[r.Integer(n_blurbs)];
48 font = fonts[r.Integer(n_fonts)];
49 } else {
50 word = blurbs2[r.Integer(n_blurbs2)];
51 font = fonts2[r.Integer(n_fonts2)];
52 }
53
54 auto name_text = Form("%s_%d", word.data(), i);
55 auto text = new REX::REveText(name_text);
56 text->SetText(name_text);
57
58 text->SetFont(font); // Set by name of file in $ROOTSYS/ui5/eve7/fonts/
59
60 int mode = r.Integer(2);
61 text->SetMode(mode);
62 if (mode == 0) { // world
63 auto &t = text->RefMainTrans();
64 t.SetRotByAngles(r.Uniform(-pi, pi), r.Uniform(-pi, pi), r.Uniform(-pi, pi));
65 t.SetPos(r.Uniform(-lim, lim), r.Uniform(-lim, lim), r.Uniform(-lim, lim));
66 text->SetFontSize(r.Uniform(0.01 * lim, 0.2 * lim));
67 } else { // screen [0, 0] bottom left, [1, 1] top-right corner, font-size in y-units, x scaled with the window
68 // aspect ratio.
69 text->SetPosition(REX::REveVector(r.Uniform(-0.1, 0.9), r.Uniform(0.1, 1.1), r.Uniform(0.0, 1.0)));
70 text->SetFontSize(r.Uniform(0.001, 0.05));
71 }
72 text->SetTextColor(
73 TColor::GetColor((float)r.Uniform(0, 0.5), (float)r.Uniform(0, 0.5), (float)r.Uniform(0, 0.5)));
74 // text->SetMainTransparency();
75 // text->SetLineColor(text->GetTextColor());
76 text->SetLineColor(
77 TColor::GetColor((float)r.Uniform(0, 0.2), (float)r.Uniform(0, 0.2), (float)r.Uniform(0, 0.2)));
78 text->SetLineAlpha(192);
79 text->SetFillColor(
80 TColor::GetColor((float)r.Uniform(0.7, 1.0), (float)r.Uniform(0.7, 1.0), (float)r.Uniform(0.7, 1.0)));
81 text->SetFillAlpha(128);
82 text->SetDrawFrame(true);
83 textHolder->AddElement(text);
84 }
85}
87{
88 TRandom &r = *gRandom;
89
90 const Double_t kR_min = 240;
91 const Double_t kR_max = 250;
92 const Double_t kZ_d = 300;
93 for (int i = 0; i < N_Jets; i++) {
94 auto jet = new REveJetCone(Form("Jet_%d", i));
95 jet->SetCylinder(2 * kR_max, 2 * kZ_d);
96 jet->AddEllipticCone(r.Uniform(-0.5, 0.5), r.Uniform(0, TMath::TwoPi()), 0.1, 0.2);
97 jet->SetFillColor(kRed);
98 jet->SetLineColor(kRed);
99
100 jetHolder->AddElement(jet);
101 }
102}
103
104void texts()
105{
106 auto eveMng = REX::REveManager::Create();
108
109 // Initialize SDF fonts.
110 // REveManager needs to be already created as location redirect needs to be set up.
111 // a) When REveText::AssertSdfFont() is called one of the two default locations
112 // will be chosen, if it is writable by the current user:
113 // - $ROOTSYS/ui5/eve7/sdf-fonts/
114 // - sdf-fonts/ in the current working directory.
115 // If neither location is writable, an error will be issued.
116 // b) Alternatively, REveText::SetSdfFontDir(std::string_view dir, bool require_write_access)
117 // can be called to set this directory manually. If the directory is already pre-populated
118 // with fonts one can set the `require_write_access` argument to false to avoid the
119 // requirement of having write access to that directory.
120
121 std::string rf_dir = gSystem->ExpandPathName("${ROOTSYS}/fonts/");
122 for (int i = 0; i < n_fonts; ++i) {
123 REX::REveText::AssertSdfFont(fonts[i], rf_dir + fonts[i] + ".ttf");
124 }
125 for (int i = 0; i < n_fonts2; ++i) {
126 REX::REveText::AssertSdfFont(fonts2[i], rf_dir + fonts2[i] + ".ttf");
127 }
128
129 // add box to overlay
130 REX::REveScene *os = eveMng->SpawnNewScene("OverlyScene", "OverlayTitle");
131 ((REveViewer *)(eveMng->GetViewers()->FirstChild()))->AddScene(os);
132 os->SetIsOverlay(true);
133
135 makeTexts(100, textHolder);
136 // os->AddElement(textHolder);
138
139 auto jetHolder = new REveElement("jets");
142
143 eveMng->Show();
144}
double Double_t
Definition RtypesCore.h:59
@ kRed
Definition Rtypes.h:66
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
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 mode
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
R__EXTERN TSystem * gSystem
Definition TSystem.h:572
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.
Eve representation of a GL view.
virtual void AddElement(REveElement *el)
Add el to the list of children.
REveElement * FirstChild() const
Returns the first child element or 0 if the list is empty.
REveScene * GetEventScene() const
void AllowMultipleRemoteConnections(bool loopBack=true, bool useAuthKey=true)
Utility function to allow remote RWebWindow connections.
REveScene * SpawnNewScene(const char *name, const char *title="")
Create a new scene.
REveViewerList * GetViewers() const
void Show(const RWebDisplayArgs &args="")
Show eve manager in specified browser.
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:1927
This is the base class for the ROOT Random number generators.
Definition TRandom.h:27
virtual Bool_t ExpandPathName(TString &path)
Expand a pathname getting rid of special shell characters like ~.
Definition TSystem.cxx:1286
ROOT::Experimental::REveManager * eveMng
const Double_t kR_max
const Double_t kZ_d
const Double_t kR_min
TCanvas * fonts()
Definition fonts.C:10
void makeJets(int N_Jets, REX::REveElement *jetHolder)
Definition jets.C:20
constexpr Double_t Pi()
Definition TMath.h:37
constexpr Double_t TwoPi()
Definition TMath.h:44