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
Control
AthenaExamples
AthExThinning
src
AthExFatObjectCnv.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
// AthExFatObjectCnv.h
8
// Header file for class AthExFatObjectCnv
9
// Author: S.Binet<binet@cern.ch>
11
#ifndef ATHEXTHINNING_AthExFATOBJECTCNV_H
12
#define ATHEXTHINNING_AthExFATOBJECTCNV_H
13
14
// STL includes
15
16
17
// AthenaPoolCnvSvc includes
18
#include "
AthenaPoolCnvSvc/T_AthenaPoolCustomCnv.h
"
19
20
// AthExThinning includes
21
#include "
AthExThinning/AthExFatObject.h
"
22
#include "
AthExThinning/AthExFatObject_p1.h
"
23
24
// Forward declaration
25
26
// the latest persistent representation type of DataCollection:
27
typedef
AthExFatObject_p1
AthExFatObject_PERS
;
28
29
class
AthExFatObjectCnv
:
public
T_AthenaPoolCustomCnv
<
30
AthExFatObject,
31
AthExFatObject_PERS
32
>
33
34
{
35
36
// make the factory for this converter our friend
37
friend
class
CnvFactory
<
AthExFatObjectCnv
>;
38
40
// Protected methods:
42
protected
:
43
46
public
:
47
AthExFatObjectCnv
(ISvcLocator* svcloc);
48
protected
:
49
52
virtual
AthExFatObject_PERS
*
53
createPersistent
(
AthExFatObject
* transCont );
54
57
virtual
AthExFatObject
*
createTransient
();
58
60
// Protected data:
62
protected
:
63
};
64
68
69
#endif //> ATHEXTHINNING_ATHEXFATOBJECTCNV_H
70
AthExFatObject_p1.h
AthExFatObjectCnv
Definition:
AthExFatObjectCnv.h:34
AthExFatObject.h
T_AthenaPoolCustomCnv
Compatibility for old converter classes that don't get passed the key.
Definition:
T_AthenaPoolCustomCnv.h:132
AthExFatObject_p1
Definition:
AthExFatObject_p1.h:23
T_AthenaPoolCustomCnv.h
his file contains the class definition for the templated T_AthenaPoolCustomCnv class.
CnvFactory
Abstract factory to create the converter.
Definition:
ToyConverter.h:16
AthExFatObjectCnv::AthExFatObjectCnv
AthExFatObjectCnv(ISvcLocator *svcloc)
Create the converter from the service locator.
Definition:
AthExFatObjectCnv.cxx:36
AthExFatObjectCnv::createPersistent
virtual AthExFatObject_PERS * createPersistent(AthExFatObject *transCont)
Build the persistent representation from the transient one.
Definition:
AthExFatObjectCnv.cxx:48
AthExFatObject
Definition:
AthExFatObject.h:29
AthExFatObject_PERS
AthExFatObject_p1 AthExFatObject_PERS
Definition:
AthExFatObjectCnv.h:27
AthExFatObjectCnv::createTransient
virtual AthExFatObject * createTransient()
Build the transient representation from a persistent one.
Definition:
AthExFatObjectCnv.cxx:59
Generated on Wed May 14 2025 21:06:30 for ATLAS Offline Software by
1.8.18