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
ForwardDetectors
ALFA
ALFA_EventCnv
ALFA_EventTPCnv
src
ALFA_ODDigitCnv_p1.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#include "
ALFA_RawEv/ALFA_ODDigit.h
"
6
#include "
ALFA_EventTPCnv/ALFA_ODDigit_p1.h
"
7
#include "
ALFA_EventTPCnv/ALFA_ODDigitCnv_p1.h
"
8
9
void
ALFA_ODDigitCnv_p1::persToTrans
(
const
ALFA_ODDigit_p1
* persObj,
ALFA_ODDigit
* transObj, MsgStream &
log
)
const
10
{
11
log
<<
MSG::DEBUG
<<
"ALFA_ODDigitCnv_p1::persToTrans called "
<<
endmsg
;
12
13
*transObj =
ALFA_ODDigit
(persObj->
m_station
,
14
persObj->
m_side
,
15
persObj->
m_plate
,
16
persObj->
m_fiber
);
17
}
18
19
20
void
ALFA_ODDigitCnv_p1::transToPers
(
const
ALFA_ODDigit
* transObj,
21
ALFA_ODDigit_p1
* persObj,
22
MsgStream &
log
)
const
23
{
24
log
<<
MSG::DEBUG
<<
"ALFA_ODDigitCnv_p1::transToPers called "
<<
endmsg
;
25
persObj->
m_plate
= transObj->
getPlate
();
26
persObj->
m_side
= transObj->
getSide
();
27
persObj->
m_fiber
= transObj->
getFiber
();
28
persObj->
m_station
= transObj->
getStation
();
29
30
}
ALFA_ODDigit_p1
Definition:
ALFA_ODDigit_p1.h:10
ALFA_ODDigitCnv_p1.h
ALFA_ODDigitCnv_p1::persToTrans
virtual void persToTrans(const ALFA_ODDigit_p1 *persObj, ALFA_ODDigit *transObj, MsgStream &log) const override
Definition:
ALFA_ODDigitCnv_p1.cxx:9
ALFA_ODDigitCnv_p1::transToPers
virtual void transToPers(const ALFA_ODDigit *transObj, ALFA_ODDigit_p1 *persObj, MsgStream &log) const override
Definition:
ALFA_ODDigitCnv_p1.cxx:20
ALFA_ODDigit::getStation
unsigned short getStation() const
Definition:
ALFA_ODDigit.h:15
ALFA_ODDigit.h
ALFA_ODDigit_p1::m_station
unsigned short m_station
Definition:
ALFA_ODDigit_p1.h:24
ALFA_ODDigit::getFiber
unsigned short getFiber() const
Definition:
ALFA_ODDigit.h:18
endmsg
#define endmsg
Definition:
AnalysisConfig_Ntuple.cxx:63
ALFA_ODDigit_p1::m_plate
unsigned short m_plate
Definition:
ALFA_ODDigit_p1.h:26
ALFA_ODDigit_p1::m_side
unsigned short m_side
Definition:
ALFA_ODDigit_p1.h:25
ALFA_ODDigit_p1::m_fiber
unsigned short m_fiber
Definition:
ALFA_ODDigit_p1.h:27
ALFA_ODDigit::getSide
unsigned short getSide() const
Definition:
ALFA_ODDigit.h:16
ALFA_ODDigit_p1.h
DEBUG
#define DEBUG
Definition:
page_access.h:11
python.CaloCondTools.log
log
Definition:
CaloCondTools.py:20
ALFA_ODDigit
Definition:
ALFA_ODDigit.h:8
ALFA_ODDigit::getPlate
unsigned short getPlate() const
Definition:
ALFA_ODDigit.h:17
Generated on Wed Apr 2 2025 21:07:04 for ATLAS Offline Software by
1.8.18