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
SCT_RawDataContainer_p1.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 SCT_RAWDATACONTAINER_P1_H
6
#define SCT_RAWDATACONTAINER_P1_H
7
8
/*
9
10
Persistent represenation of an SCT_RawDataContainer.
11
This can contain both SCT3_RawData at M4
12
and SCT1_RawData
13
14
Author: Davide Costanzo - 23 Aug 2007
15
16
*/
17
18
#include <vector>
19
#include <string>
20
#include "
InDetEventAthenaPool/SCT3_RawData_p1.h
"
21
#include "
InDetEventAthenaPool/InDetRawData_p1.h
"
22
#include "
InDetEventAthenaPool/InDetRawDataCollection_p1.h
"
23
24
25
class
SCT_RawDataContainer_p1
26
{
27
public
:
29
SCT_RawDataContainer_p1
();
30
friend
class
SCT_RawDataContainerCnv_p1
;
31
//private:
32
std::vector<InDetRawDataCollection_p1>
m_collections
;
33
std::vector<InDetRawData_p1>
m_rawdata
;
34
std::vector<SCT3_RawData_p1>
m_sct3data
;
35
};
36
37
38
// inlines
39
40
inline
41
SCT_RawDataContainer_p1::SCT_RawDataContainer_p1
() {}
42
43
#endif
SCT_RawDataContainerCnv_p1
Definition:
SCT_RawDataContainerCnv_p1.h:26
SCT_RawDataContainer_p1::m_collections
std::vector< InDetRawDataCollection_p1 > m_collections
Definition:
SCT_RawDataContainer_p1.h:32
InDetRawData_p1.h
SCT_RawDataContainer_p1::SCT_RawDataContainer_p1
SCT_RawDataContainer_p1()
Default constructor.
Definition:
SCT_RawDataContainer_p1.h:41
SCT_RawDataContainer_p1::m_rawdata
std::vector< InDetRawData_p1 > m_rawdata
Definition:
SCT_RawDataContainer_p1.h:33
SCT_RawDataContainer_p1::m_sct3data
std::vector< SCT3_RawData_p1 > m_sct3data
Definition:
SCT_RawDataContainer_p1.h:34
SCT3_RawData_p1.h
SCT_RawDataContainer_p1
Definition:
SCT_RawDataContainer_p1.h:26
InDetRawDataCollection_p1.h
Generated on Wed Apr 23 2025 21:18:35 for ATLAS Offline Software by
1.8.18