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
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
graphics
VP1
VP1Base
VP1Base
VP12DViewRZFishEyeTransformation.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
6
// //
7
// Header file for class VP12DViewRZFishEyeTransformation //
8
// //
9
// Author: Thomas Kittelmann <Thomas.Kittelmann@cern.ch> //
10
// //
11
// Initial version: April 2007 //
12
// //
14
15
#ifndef VP12DVIEWRZFISHEYETRANSFORMATION_H
16
#define VP12DVIEWRZFISHEYETRANSFORMATION_H
17
18
#include "
VP1Base/IVP12DViewTransformation.h
"
19
20
class
VP12DViewRZFishEyeTransformation
:
public
IVP12DViewTransformation
{
21
public
:
22
23
VP12DViewRZFishEyeTransformation
();
24
virtual
~VP12DViewRZFishEyeTransformation
() {};
25
26
QPointF
transform
(
const
QPointF &
source
)
const
;
27
QPointF
inverseTransform
(
const
QPointF &
source
)
const
;
28
29
virtual
QRectF
inverseTransform
(
const
QRectF &
source
)
const
{
return
IVP12DViewTransformation::inverseTransform
(
source
); }
30
virtual
QRectF
transform
(
const
QRectF &
source
)
const
{
return
IVP12DViewTransformation::inverseTransform
(
source
); }
31
32
private
:
33
34
double
m_fisheyepar
;
35
36
};
37
39
40
#include <cmath>
41
42
inline
QPointF
VP12DViewRZFishEyeTransformation::transform
(
const
QPointF &
source
)
const
43
{
44
return
QPointF(
source
.x()/(1+fabs(
source
.x()*
m_fisheyepar
)),
source
.y()/(1+fabs(
source
.y()*
m_fisheyepar
)));
45
}
46
47
inline
QPointF
VP12DViewRZFishEyeTransformation::inverseTransform
(
const
QPointF &
source
)
const
48
{
49
return
QPointF(
source
.x()/(1-fabs(
source
.x()*
m_fisheyepar
)),
source
.y()/(1-fabs(
source
.y()*
m_fisheyepar
)));
50
}
51
52
#endif
VP12DViewRZFishEyeTransformation::inverseTransform
virtual QRectF inverseTransform(const QRectF &source) const
Definition:
VP12DViewRZFishEyeTransformation.h:29
VP12DViewRZFishEyeTransformation::~VP12DViewRZFishEyeTransformation
virtual ~VP12DViewRZFishEyeTransformation()
Definition:
VP12DViewRZFishEyeTransformation.h:24
IVP12DViewTransformation
Definition:
IVP12DViewTransformation.h:27
VP12DViewRZFishEyeTransformation::transform
QPointF transform(const QPointF &source) const
Definition:
VP12DViewRZFishEyeTransformation.h:42
IVP12DViewTransformation::inverseTransform
virtual QPointF inverseTransform(const QPointF &source) const =0
VP12DViewRZFishEyeTransformation::VP12DViewRZFishEyeTransformation
VP12DViewRZFishEyeTransformation()
Definition:
VP12DViewRZFishEyeTransformation.cxx:18
IVP12DViewTransformation.h
VP12DViewRZFishEyeTransformation
Definition:
VP12DViewRZFishEyeTransformation.h:20
VP12DViewRZFishEyeTransformation::transform
virtual QRectF transform(const QRectF &source) const
Definition:
VP12DViewRZFishEyeTransformation.h:30
copySelective.source
string source
Definition:
copySelective.py:32
VP12DViewRZFishEyeTransformation::m_fisheyepar
double m_fisheyepar
Definition:
VP12DViewRZFishEyeTransformation.h:34
VP12DViewRZFishEyeTransformation::inverseTransform
QPointF inverseTransform(const QPointF &source) const
Definition:
VP12DViewRZFishEyeTransformation.h:47
Generated on Wed Apr 2 2025 21:22:49 for ATLAS Offline Software by
1.8.18