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
InnerDetector
InDetEventCnv
InDetEventAthenaPool
InDetEventAthenaPool
InDetRawDataContainer_p2.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef INDETRAWDATACONTAINER_P2_H
6
#define INDETRAWDATACONTAINER_P2_H
7
8
/*
9
10
Persistent represenation of an IndetRawDataContainer.
11
This is used for all the RDO conainers with base RDO objects.
12
The converter will take care of creating TRT/SCT/Pixel
13
RDO containers out of it.
14
15
The assumption is that objects contained in a container
16
are all of the same type, eg containers are hompgeneous.
17
This persistent container should only be used for objects
18
that contain InDetRawData_p2.
19
20
Author: Davide Costanzo
21
22
*/
23
24
#include <vector>
25
#include <string>
26
#include "
InDetEventAthenaPool/InDetRawData_p2.h
"
27
#include "
InDetEventAthenaPool/InDetRawDataCollection_p1.h
"
28
29
30
class
InDetRawDataContainer_p2
31
{
32
public
:
34
InDetRawDataContainer_p2
();
35
friend
class
TRT_LoLumRawDataContainerCnv_p2
;
36
friend
class
SCT1_RawDataContainerCnv_p2
;
37
friend
class
Pixel1RawDataContainerCnv_p2
;
38
private
:
39
std::vector<InDetRawDataCollection_p1>
m_collections
;
40
std::vector<InDetRawData_p2>
m_rawdata
;
41
};
42
43
44
// inlines
45
46
inline
47
InDetRawDataContainer_p2::InDetRawDataContainer_p2
() {}
48
49
#endif
InDetRawDataContainer_p2
Definition:
InDetRawDataContainer_p2.h:31
InDetRawDataContainer_p2::m_collections
std::vector< InDetRawDataCollection_p1 > m_collections
Definition:
InDetRawDataContainer_p2.h:39
InDetRawData_p2.h
TRT_LoLumRawDataContainerCnv_p2
Definition:
TRT_LoLumRawDataContainerCnv_p2.h:26
Pixel1RawDataContainerCnv_p2
Definition:
Pixel1RawDataContainerCnv_p2.h:26
InDetRawDataContainer_p2::InDetRawDataContainer_p2
InDetRawDataContainer_p2()
Default constructor.
Definition:
InDetRawDataContainer_p2.h:47
InDetRawDataContainer_p2::SCT1_RawDataContainerCnv_p2
friend class SCT1_RawDataContainerCnv_p2
Definition:
InDetRawDataContainer_p2.h:36
InDetRawDataContainer_p2::m_rawdata
std::vector< InDetRawData_p2 > m_rawdata
Definition:
InDetRawDataContainer_p2.h:40
InDetRawDataCollection_p1.h
Generated on Thu Mar 13 2025 21:11:56 for ATLAS Offline Software by
1.8.18