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
DetectorDescription
GeoModel
GeoModelExamples
GeoModelExamples
SimplestToyDetectorFactory.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef SimplestToyDetectorFactory_h
6
#define SimplestToyDetectorFactory_h 1
7
#include "GeoModelKernel/GeoVDetectorFactory.h"
8
#include "
GeoModelExamples/ToyDetectorManager.h
"
9
class
StoreGateSvc
;
10
class
SimplestToyDetectorFactory
:
public
GeoVDetectorFactory {
11
12
public
:
13
14
// Constructor:
15
SimplestToyDetectorFactory
(
StoreGateSvc
*pDetStore);
16
17
// Destructor:
18
~SimplestToyDetectorFactory
();
19
20
// Creation of geometry:
21
virtual
void
create
(GeoPhysVol *world);
22
23
// Access to the results:
24
virtual
const
ToyDetectorManager
*
getDetectorManager
()
const
;
25
26
private
:
27
28
// Illegal operations:
29
const
SimplestToyDetectorFactory
&
operator=
(
const
SimplestToyDetectorFactory
&right);
30
SimplestToyDetectorFactory
(
const
SimplestToyDetectorFactory
&right);
31
32
// The manager:
33
ToyDetectorManager
*
m_detectorManager
;
34
35
StoreGateSvc
*
m_detectorStore
;
36
};
37
38
// Class SimplestToyDetectorFactory
39
#endif
SimplestToyDetectorFactory::SimplestToyDetectorFactory
SimplestToyDetectorFactory(const SimplestToyDetectorFactory &right)
SimplestToyDetectorFactory::getDetectorManager
virtual const ToyDetectorManager * getDetectorManager() const
Definition:
SimplestToyDetectorFactory.cxx:85
SimplestToyDetectorFactory::create
virtual void create(GeoPhysVol *world)
Definition:
SimplestToyDetectorFactory.cxx:38
SimplestToyDetectorFactory::SimplestToyDetectorFactory
SimplestToyDetectorFactory(StoreGateSvc *pDetStore)
Definition:
SimplestToyDetectorFactory.cxx:29
StoreGateSvc
The Athena Transient Store API.
Definition:
StoreGateSvc.h:125
SimplestToyDetectorFactory::~SimplestToyDetectorFactory
~SimplestToyDetectorFactory()
Definition:
SimplestToyDetectorFactory.cxx:33
SimplestToyDetectorFactory::m_detectorManager
ToyDetectorManager * m_detectorManager
Definition:
SimplestToyDetectorFactory.h:33
ToyDetectorManager.h
SimplestToyDetectorFactory::m_detectorStore
StoreGateSvc * m_detectorStore
Definition:
SimplestToyDetectorFactory.h:35
SimplestToyDetectorFactory
Definition:
SimplestToyDetectorFactory.h:10
ToyDetectorManager
Definition:
ToyDetectorManager.h:13
SimplestToyDetectorFactory::operator=
const SimplestToyDetectorFactory & operator=(const SimplestToyDetectorFactory &right)
Generated on Tue Apr 1 2025 21:18:43 for ATLAS Offline Software by
1.8.18