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
w
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
Trigger
TrigEvent
TrigEventAthenaPool
src
TrigCompositeCnv.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
/**********************************************************************************
6
* @Project: Trigger
7
* @Package: TrigEventAthenaPool
8
* @class : TrigCompositeCnv
9
*
10
* @brief transient persistent converter for TrigComposite
11
*
12
* @author Camille B.-Champagne <camille.belanger-champagne@cern.ch> - McGill U.
13
**********************************************************************************/
14
#ifndef TRIGEVENTATHENAPOOL_TRIGCOMBINEDEVENTCNV_H
15
#define TRIGEVENTATHENAPOOL_TRIGCOMBINEDEVENTCNV_H
16
17
#include "
TrigCombinedEvent/TrigComposite.h
"
18
#include "
AthenaPoolCnvSvc/T_AthenaPoolCustomCnv.h
"
19
20
// typedef to the latest persistent version
21
class
TrigComposite_p1
;
22
typedef
TrigComposite_p1
TrigComposite_PERS
;
23
24
class
MsgStream;
25
26
struct
TrigCompositeCnv_impl
;
27
class
TrigCompositeCnv
:
public
T_AthenaPoolCustomCnv
<TrigComposite, TrigComposite_PERS >
28
{
29
30
friend
class
CnvFactory
<
TrigCompositeCnv
>;
31
32
public
:
33
TrigCompositeCnv
(ISvcLocator* svcloc);
34
~TrigCompositeCnv
();
35
36
protected
:
37
TrigComposite_PERS
*
createPersistent
(
TrigComposite
* transCont);
38
39
TrigComposite
*
createTransient
();
40
41
private
:
42
TrigCompositeCnv_impl
*
m_impl
;
43
};
44
45
46
#endif
TrigCompositeCnv
Definition:
TrigCompositeCnv.h:28
TrigCompositeCnv::createPersistent
TrigComposite_PERS * createPersistent(TrigComposite *transCont)
Definition:
TrigCompositeCnv.cxx:24
TrigCompositeCnv::~TrigCompositeCnv
~TrigCompositeCnv()
Definition:
TrigCompositeCnv.cxx:19
TrigCompositeCnv::m_impl
TrigCompositeCnv_impl * m_impl
Definition:
TrigCompositeCnv.h:42
TrigCompositeCnv::TrigCompositeCnv
TrigCompositeCnv(ISvcLocator *svcloc)
Definition:
TrigCompositeCnv.cxx:14
TrigComposite
Definition:
Trigger/TrigEvent/TrigCombinedEvent/TrigCombinedEvent/TrigComposite.h:26
T_AthenaPoolCustomCnv
Compatibility for old converter classes that don't get passed the key.
Definition:
T_AthenaPoolCustomCnv.h:132
TrigComposite_PERS
TrigComposite_p1 TrigComposite_PERS
Definition:
TrigCompositeCnv.h:21
T_AthenaPoolCustomCnv.h
his file contains the class definition for the templated T_AthenaPoolCustomCnv class.
TrigComposite_p1
Definition:
TrigComposite_p1.h:27
CnvFactory
Abstract factory to create the converter.
Definition:
ToyConverter.h:16
TrigComposite.h
TrigCompositeCnv::createTransient
TrigComposite * createTransient()
Definition:
TrigCompositeCnv.cxx:35
TrigCompositeCnv_impl
Definition:
TrigCompositeCnv.cxx:10
Generated on Mon May 12 2025 21:20:32 for ATLAS Offline Software by
1.8.18