Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
Related Functions
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
v
w
x
z
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
GitLab
LXR
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Trigger
TrigAnalysis
TrigInDetAnalysisUser
Analysis
src
AtlasLabels.cxx
Go to the documentation of this file.
1
10
#include "
AtlasLabels.h
"
11
12
#include "TLatex.h"
13
#include "TLine.h"
14
#include "TPave.h"
15
#include "TPad.h"
16
#include "TMarker.h"
17
18
19
#include <string>
20
21
void
ATLASLabel
(Double_t
x
,Double_t
y
,
const
std::string&
text
, Color_t
color
,
int
nx,
int
ny )
22
{
23
TLatex
l
;
//l.SetTextAlign(12); l.SetTextSize(tsize);
24
l
.SetNDC();
25
l
.SetTextFont(72);
26
l
.SetTextColor(
color
);
27
28
double
delx
= 0.115*696*gPad->GetWh()*nx/(472*gPad->GetWw()*ny);
29
30
l
.DrawLatex(
x
,
y
,
"ATLAS"
);
31
if
(
text
!=
""
) {
32
TLatex
p
;
33
p
.SetNDC();
34
p
.SetTextFont(42);
35
p
.SetTextColor(
color
);
36
p
.DrawLatex(
x
+
delx
,
y
,
text
.c_str());
37
// p.DrawLatex(x,y,"#sqrt{s}=900GeV");
38
}
39
}
40
41
42
void
Label
(Double_t
x
,Double_t
y
,
const
std::string&
text
, Color_t
color
,
int
nx,
int
ny )
43
{
44
TLatex
l
;
//l.SetTextAlign(12); l.SetTextSize(tsize);
45
l
.SetNDC();
46
l
.SetTextFont(72);
47
l
.SetTextColor(
color
);
48
49
double
delx
= 0.115*696*gPad->GetWh()*nx/(472*gPad->GetWw()*ny);
50
51
if
(
text
!=
""
) {
52
TLatex
p
;
53
p
.SetNDC();
54
p
.SetTextFont(42);
55
p
.SetTextColor(
color
);
56
p
.DrawLatex(
x
+
delx
,
y
,
text
.c_str());
57
// p.DrawLatex(x,y,"#sqrt{s}=900GeV");
58
}
59
}
60
61
62
63
64
void
ATLASLabelOld
(Double_t
x
,Double_t
y
,
bool
Preliminary,Color_t
color
)
65
{
66
TLatex
l
;
//l.SetTextAlign(12); l.SetTextSize(tsize);
67
l
.SetNDC();
68
l
.SetTextFont(72);
69
l
.SetTextColor(
color
);
70
l
.DrawLatex(
x
,
y
,
"ATLAS"
);
71
if
(Preliminary) {
72
TLatex
p
;
73
p
.SetNDC();
74
p
.SetTextFont(42);
75
p
.SetTextColor(
color
);
76
p
.DrawLatex(
x
+0.115,
y
,
"Preliminary"
);
77
}
78
}
79
80
81
82
void
ATLASVersion
(
const
std::string&
version
, Double_t
x
, Double_t
y
, Color_t
color
)
83
{
84
85
if
(
version
!=
""
) {
86
char
versionString[100];
87
sprintf(versionString,
"Version %s"
,
version
.c_str());
88
TLatex
l
;
89
l
.SetTextAlign(22);
90
l
.SetTextSize(0.04);
91
l
.SetNDC();
92
l
.SetTextFont(72);
93
l
.SetTextColor(
color
);
94
l
.DrawLatex(
x
,
y
,versionString);
95
}
96
}
97
color
Definition:
jFexInputByteStreamTool.cxx:25
ATLASVersion
void ATLASVersion(const std::string &version, Double_t x, Double_t y, Color_t color)
Definition:
AtlasLabels.cxx:82
Label
void Label(Double_t x, Double_t y, const std::string &text, Color_t color, int nx, int ny)
Definition:
AtlasLabels.cxx:42
UploadAMITag.l
list l
Definition:
UploadAMITag.larcaf.py:158
x
#define x
python.utils.AtlRunQueryDQUtils.p
p
Definition:
AtlRunQueryDQUtils.py:210
ATLASLabel
void ATLASLabel(Double_t x, Double_t y, const std::string &text, Color_t color, int nx, int ny)
Definition:
AtlasLabels.cxx:21
get_generator_info.version
version
Definition:
get_generator_info.py:33
y
#define y
ATLASLabelOld
void ATLASLabelOld(Double_t x, Double_t y, bool Preliminary, Color_t color)
Definition:
AtlasLabels.cxx:64
makeTransCanvas.text
text
Definition:
makeTransCanvas.py:11
PlotCalibFromCool.delx
delx
Definition:
PlotCalibFromCool.py:865
AtlasLabels.h
Generated on Thu May 8 2025 21:06:28 for ATLAS Offline Software by
1.8.18