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
TileCalorimeter
TileSvc
TileTPCnv
TileTPCnv
TileRawChannelContainer_p1.h
Go to the documentation of this file.
1
3
/*
4
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
5
*/
6
7
// TileRawChannelContainer_p1.h
8
// Persistent represenation of a TileRawChannelContainer
9
// Author: Alexander Solodkov <Sanya.Solodkov@cern.ch>
10
// Date: June 2009
12
#ifndef TILERAWCHANNELCONTAINER_P1_H
13
#define TILERAWCHANNELCONTAINER_P1_H
14
15
#include "
TileTPCnv/TileRawChannel_p1.h
"
16
#include <vector>
17
18
class
TileRawChannelContainer_p1
19
{
20
public
:
22
typedef
std::vector<TileRawChannel_p1>
ElemVector
;
23
typedef
ElemVector::const_iterator
const_iterator
;
24
typedef
ElemVector::iterator
iterator
;
25
27
TileRawChannelContainer_p1
() :
m_param
(),
m_cont
() {}
28
29
// Accessors
30
const
std::vector<unsigned int>&
getParam
()
const
{
return
m_param
;}
31
const
ElemVector
&
getVector
()
const
{
return
m_cont
;}
32
33
// Clear methods
34
void
clear
() {
m_param
.clear();
m_cont
.clear(); }
35
void
reserve
(
unsigned
int
size1,
unsigned
int
size2) {
m_param
.reserve(size1);
m_cont
.reserve(size2); }
36
37
// Fill methods
38
void
push_back_param
(
unsigned
int
param) {
m_param
.push_back(param); }
39
TileRawChannel_p1
*
newElem
() {
m_cont
.push_back(
TileRawChannel_p1
());
return
&
m_cont
.back(); }
40
41
private
:
42
std::vector<unsigned int>
m_param
;
43
std::vector<TileRawChannel_p1>
m_cont
;
44
};
45
46
#endif
xAOD::iterator
JetConstituentVector::iterator iterator
Definition:
JetConstituentVector.cxx:68
TileRawChannelContainer_p1::push_back_param
void push_back_param(unsigned int param)
Definition:
TileRawChannelContainer_p1.h:38
TileRawChannelContainer_p1::const_iterator
ElemVector::const_iterator const_iterator
Definition:
TileRawChannelContainer_p1.h:23
TileRawChannelContainer_p1::getParam
const std::vector< unsigned int > & getParam() const
Definition:
TileRawChannelContainer_p1.h:30
TileRawChannelContainer_p1::m_param
std::vector< unsigned int > m_param
Definition:
TileRawChannelContainer_p1.h:42
TileRawChannel_p1
Definition:
TileRawChannel_p1.h:20
TileRawChannelContainer_p1::getVector
const ElemVector & getVector() const
Definition:
TileRawChannelContainer_p1.h:31
TileRawChannelContainer_p1::reserve
void reserve(unsigned int size1, unsigned int size2)
Definition:
TileRawChannelContainer_p1.h:35
TileRawChannelContainer_p1::iterator
ElemVector::iterator iterator
Definition:
TileRawChannelContainer_p1.h:24
TileRawChannelContainer_p1::ElemVector
std::vector< TileRawChannel_p1 > ElemVector
typedefs
Definition:
TileRawChannelContainer_p1.h:22
TileRawChannelContainer_p1::TileRawChannelContainer_p1
TileRawChannelContainer_p1()
Default constructor.
Definition:
TileRawChannelContainer_p1.h:27
TileRawChannelContainer_p1::clear
void clear()
Definition:
TileRawChannelContainer_p1.h:34
TileRawChannelContainer_p1::newElem
TileRawChannel_p1 * newElem()
Definition:
TileRawChannelContainer_p1.h:39
TileRawChannelContainer_p1
Definition:
TileRawChannelContainer_p1.h:19
TileRawChannelContainer_p1::m_cont
std::vector< TileRawChannel_p1 > m_cont
Definition:
TileRawChannelContainer_p1.h:43
TileRawChannel_p1.h
Generated on Thu Mar 13 2025 21:19:55 for ATLAS Offline Software by
1.8.18