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
Calorimeter
CaloCnv
CaloSimEventTPCnv
CaloSimEventTPCnv
CaloCalibrationHitContainer_p3.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef CALOSIMEVENTTPCNV_CALOCALIBRATIONHITCONTAINER_P3_H
6
#define CALOSIMEVENTTPCNV_CALOCALIBRATIONHITCONTAINER_P3_H
7
12
#include <vector>
13
#include <string>
14
15
class
CaloCalibrationHitContainer_p3
16
{
17
public
:
18
20
CaloCalibrationHitContainer_p3
();
21
22
// Accessors
23
const
std::string&
name
()
const
;
24
25
std::vector<unsigned int>
m_channelHash
;
26
std::vector<unsigned int>
m_energy
;
// 18 bits compressed - all four of them in the same array
27
// std::vector<unsigned int> m_energy1; // 18 bits compressed
28
// std::vector<unsigned int> m_energy2; // 18 bits compressed
29
// std::vector<unsigned int> m_energy3; // 18 bits compressed
30
std::string
m_name
;
31
std::vector<unsigned int>
m_particleID
;
32
33
};
34
35
// inlines
36
37
inline
CaloCalibrationHitContainer_p3::CaloCalibrationHitContainer_p3
() {}
38
39
inline
const
std::string&
CaloCalibrationHitContainer_p3::name
()
const
{
return
m_name
;}
40
41
#endif
CaloCalibrationHitContainer_p3::name
const std::string & name() const
Definition:
CaloCalibrationHitContainer_p3.h:39
CaloCalibrationHitContainer_p3::CaloCalibrationHitContainer_p3
CaloCalibrationHitContainer_p3()
Default constructor.
Definition:
CaloCalibrationHitContainer_p3.h:37
CaloCalibrationHitContainer_p3::m_particleID
std::vector< unsigned int > m_particleID
Definition:
CaloCalibrationHitContainer_p3.h:31
CaloCalibrationHitContainer_p3
Persistent represenation of a CaloCalibrationContainer,.
Definition:
CaloCalibrationHitContainer_p3.h:16
CaloCalibrationHitContainer_p3::m_energy
std::vector< unsigned int > m_energy
Definition:
CaloCalibrationHitContainer_p3.h:26
CaloCalibrationHitContainer_p3::m_channelHash
std::vector< unsigned int > m_channelHash
Definition:
CaloCalibrationHitContainer_p3.h:25
CaloCalibrationHitContainer_p3::m_name
std::string m_name
Definition:
CaloCalibrationHitContainer_p3.h:30
Generated on Fri Apr 25 2025 21:07:56 for ATLAS Offline Software by
1.8.18