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
Trigger
TrigT1
TrigT1CaloEvent
TrigT1CaloEvent
EnergyRoI.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3
*/
4
/***************************************************************************
5
EnergyRoI.h - description
6
-------------------
7
begin : Friday May 05 2002
8
email : e.moyse@qmul.ac.uk
9
***************************************************************************/
10
11
12
#ifndef EnergyRoI_H
13
#define EnergyRoI_H
14
15
// Gaudi kernel stuff.
16
#include "GaudiKernel/DataObject.h"
17
18
namespace
LVL1
{
19
26
class
EnergyRoI :
public
DataObject {
27
public
:
28
29
// constructor
30
EnergyRoI
(
unsigned
int
word0,
unsigned
int
word1
,
unsigned
int
word2) :
31
m_roiWord0
(word0),
m_roiWord1
(
word1
),
m_roiWord2
(word2) {};
32
33
// destructor
34
~EnergyRoI
(){};
36
unsigned
int
roiWord0
()
const
{
return
m_roiWord0
;}
38
unsigned
int
roiWord1
()
const
{
return
m_roiWord1
;}
40
unsigned
int
roiWord2
()
const
{
return
m_roiWord2
;}
41
private
:
42
unsigned
int
m_roiWord0
;
43
unsigned
int
m_roiWord1
;
44
unsigned
int
m_roiWord2
;
45
46
};
47
48
}
//end of LVL1 namespace defn
49
50
#ifndef ENERGYROI_CLASSDEF_H
51
#include "
TrigT1CaloEvent/EnergyRoI_ClassDEF.h
"
52
#endif
53
54
#endif
xAOD::word1
word1
Definition:
eFexEMRoI_v1.cxx:87
LVL1::EnergyRoI::roiWord2
unsigned int roiWord2() const
return roi word 2
Definition:
EnergyRoI.h:50
LVL1::EnergyRoI::roiWord0
unsigned int roiWord0() const
return roi word 0
Definition:
EnergyRoI.h:46
LVL1
eFexTowerBuilder creates xAOD::eFexTowerContainer from supercells (LATOME) and triggerTowers (TREX) i...
Definition:
ICMMCPHitsCnvTool.h:18
LVL1::EnergyRoI::m_roiWord0
unsigned int m_roiWord0
Definition:
EnergyRoI.h:52
LVL1::EnergyRoI::~EnergyRoI
~EnergyRoI()
Definition:
EnergyRoI.h:44
LVL1::EnergyRoI::m_roiWord1
unsigned int m_roiWord1
Definition:
EnergyRoI.h:53
EnergyRoI_ClassDEF.h
LVL1::EnergyRoI::m_roiWord2
unsigned int m_roiWord2
Definition:
EnergyRoI.h:54
LVL1::EnergyRoI::roiWord1
unsigned int roiWord1() const
return roi word 1
Definition:
EnergyRoI.h:48
LVL1::EnergyRoI::EnergyRoI
EnergyRoI(unsigned int word0, unsigned int word1, unsigned int word2)
Definition:
EnergyRoI.h:40
Generated on Sat May 3 2025 21:09:30 for ATLAS Offline Software by
1.8.18