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
Simulation
G4Utilities
G4UserActions
src
VolumeDumperTool.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#include "
VolumeDumperTool.h
"
6
7
namespace
G4UA
8
{
9
10
//---------------------------------------------------------------------------
11
// Constructor
12
//---------------------------------------------------------------------------
13
VolumeDumperTool::VolumeDumperTool
(
const
std::string&
type
,
const
std::string&
name
,
14
const
IInterface*
parent
) :
15
UserActionToolBase
<
VolumeDumper
>(
type
,
name
,
parent
)
16
{
17
}
18
19
//---------------------------------------------------------------------------
20
// Create the action on request
21
//---------------------------------------------------------------------------
22
std::unique_ptr<VolumeDumper>
23
VolumeDumperTool::makeAndFillAction
(
G4AtlasUserActions
& actionList)
24
{
25
ATH_MSG_DEBUG
(
"Constructing a VolumeDumper action"
);
26
auto
action
= std::make_unique<VolumeDumper>();
27
actionList.
eventActions
.push_back(
action
.get() );
28
return
action
;
29
}
30
31
}
G4UA::G4AtlasUserActions
Struct for passing around user actions.
Definition:
IUserActionTool.h:32
G4UA::VolumeDumperTool::makeAndFillAction
virtual std::unique_ptr< VolumeDumper > makeAndFillAction(G4AtlasUserActions &) override final
creates the action instances
Definition:
VolumeDumperTool.cxx:23
VolumeDumperTool.h
G4UA
for nSW
Definition:
CalibrationDefaultProcessing.h:19
python.CaloAddPedShiftConfig.type
type
Definition:
CaloAddPedShiftConfig.py:42
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition:
AthMsgStreamMacros.h:29
test_pyathena.parent
parent
Definition:
test_pyathena.py:15
G4UA::VolumeDumper
Definition:
VolumeDumper.h:19
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
G4UA::UserActionToolBase
abstract template utility base-class for G4 user-action tools.
Definition:
UserActionToolBase.h:33
python.CaloScaleNoiseConfig.action
action
Definition:
CaloScaleNoiseConfig.py:77
G4UA::G4AtlasUserActions::eventActions
std::vector< G4UserEventAction * > eventActions
Definition:
IUserActionTool.h:34
G4UA::VolumeDumperTool::VolumeDumperTool
VolumeDumperTool(const std::string &type, const std::string &name, const IInterface *parent)
Standard constructor.
Definition:
VolumeDumperTool.cxx:13
Generated on Sat Apr 5 2025 21:22:18 for ATLAS Offline Software by
1.8.18