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
DetectorDescription
DetDescrCnvSvc
DetDescrCnvSvc
DetDescrConverter.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
/***************************************************************************
6
Detector description conversion service package
7
-----------------------------------------------
8
***************************************************************************/
9
10
#ifndef DETDESCRCNVSVC_DETDESCRCONVERTER_H
11
#define DETDESCRCNVSVC_DETDESCRCONVERTER_H
12
13
#include "GaudiKernel/Converter.h"
14
#include "GaudiKernel/ServiceHandle.h"
15
16
#include "
AthenaBaseComps/AthMessaging.h
"
17
#include "
AthenaBaseComps/AthCheckMacros.h
"
18
#include "
StoreGate/StoreGateSvc.h
"
19
20
class
DetDescrCnvSvc
;
21
class
DetDescrAddress
;
22
class
DataObject;
23
24
25
class
DetDescrConverter
:
public
Converter
,
public
AthMessaging
{
26
public
:
27
virtual
StatusCode
createObj
(IOpaqueAddress* pAddr, DataObject*& pObj) = 0;
28
virtual
StatusCode
fillObjRefs
(IOpaqueAddress* pAddr, DataObject* pObj);
29
virtual
StatusCode
createRep
(DataObject* pObj, IOpaqueAddress*& pAddr);
30
virtual
StatusCode
fillRepRefs
(IOpaqueAddress* pAddr, DataObject* pObj);
31
33
const
ServiceHandle<StoreGateSvc>
&
detStore
()
const
{
return
m_detStore
; }
34
36
static
long
storageType
();
37
38
protected
:
39
DetDescrConverter
(
const
CLID
& myCLID, ISvcLocator* svcloc,
const
char
*
name
=
nullptr
);
40
41
private
:
42
ServiceHandle<StoreGateSvc>
m_detStore
;
43
};
44
45
#endif // DETDESCRCNVSVC_DETDESCRCONVERTER_H
AthCheckMacros.h
DetDescrCnvSvc
Definition:
DetDescrCnvSvc.h:14
DetDescrConverter::detStore
const ServiceHandle< StoreGateSvc > & detStore() const
Handle to DetectorStore.
Definition:
DetDescrConverter.h:33
DetDescrConverter::fillRepRefs
virtual StatusCode fillRepRefs(IOpaqueAddress *pAddr, DataObject *pObj)
Definition:
DetDescrConverter.cxx:25
DetDescrConverter::m_detStore
ServiceHandle< StoreGateSvc > m_detStore
Definition:
DetDescrConverter.h:42
DetDescrConverter
Definition:
DetDescrConverter.h:25
DetDescrAddress
Definition:
DetDescrAddress.h:32
DetDescrConverter::fillObjRefs
virtual StatusCode fillObjRefs(IOpaqueAddress *pAddr, DataObject *pObj)
Definition:
DetDescrConverter.cxx:15
DetDescrConverter::createRep
virtual StatusCode createRep(DataObject *pObj, IOpaqueAddress *&pAddr)
Definition:
DetDescrConverter.cxx:20
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
DetDescrConverter::DetDescrConverter
DetDescrConverter(const CLID &myCLID, ISvcLocator *svcloc, const char *name=nullptr)
Definition:
DetDescrConverter.cxx:34
DetDescrConverter::createObj
virtual StatusCode createObj(IOpaqueAddress *pAddr, DataObject *&pObj)=0
AthMessaging
Class to provide easy MsgStream access and capabilities.
Definition:
AthMessaging.h:55
CLID
uint32_t CLID
The Class ID type.
Definition:
Event/xAOD/xAODCore/xAODCore/ClassID_traits.h:47
Converter
Definition:
Converter.h:27
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
DetDescrConverter::storageType
static long storageType()
Storage type for all DetDescrConverters.
Definition:
DetDescrConverter.cxx:30
AthMessaging.h
StoreGateSvc.h
ServiceHandle< StoreGateSvc >
Generated on Sun May 11 2025 21:08:39 for ATLAS Offline Software by
1.8.18