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
G4Extensions
ExtraParticles
src
ExtraParticlesPhysicsTool.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 EXTRA_PARTICLES__EXTRA_PARTICLES_PHYSICS_TOOL_H
6
#define EXTRA_PARTICLES__EXTRA_PARTICLES_PHYSICS_TOOL_H 1
7
8
// Include files
9
#include "
AthenaBaseComps/AthAlgTool.h
"
10
#include "
G4AtlasInterfaces/IPhysicsOptionTool.h
"
11
#include "G4VPhysicsConstructor.hh"
12
21
class
ExtraParticlesPhysicsTool
22
:
public
G4VPhysicsConstructor,
23
public
extends<AthAlgTool, IPhysicsOptionTool> {
24
public
:
26
ExtraParticlesPhysicsTool
(
const
std::string &
type
,
const
std::string &
name
,
27
const
IInterface *
parent
);
28
29
virtual
~ExtraParticlesPhysicsTool
();
30
32
virtual
StatusCode
initialize
()
override
final
;
33
virtual
void
ConstructParticle
()
override
final
;
34
virtual
void
ConstructProcess
()
override
final
;
35
37
virtual
ExtraParticlesPhysicsTool
*
GetPhysicsOption
()
override
final
;
38
39
protected
:
41
std::map<std::string, std::vector<double>>
m_extraParticlesConfig
;
42
44
std::set<G4ParticleDefinition *>
m_extraParticles
;
45
};
46
47
#endif // EXTRA_PARTICLES__EXTRA_PARTICLES_PHYSICS_TOOL_H
ExtraParticlesPhysicsTool
Definition:
ExtraParticlesPhysicsTool.h:23
ExtraParticlesPhysicsTool::m_extraParticles
std::set< G4ParticleDefinition * > m_extraParticles
a set to hold the newly created extra particles
Definition:
ExtraParticlesPhysicsTool.h:44
python.CaloAddPedShiftConfig.type
type
Definition:
CaloAddPedShiftConfig.py:42
ExtraParticlesPhysicsTool::m_extraParticlesConfig
std::map< std::string, std::vector< double > > m_extraParticlesConfig
a set of parameters for extra particle building
Definition:
ExtraParticlesPhysicsTool.h:41
IPhysicsOptionTool.h
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
ExtraParticlesPhysicsTool::initialize
virtual StatusCode initialize() override final
Initialize method.
Definition:
ExtraParticlesPhysicsTool.cxx:48
AthAlgTool.h
test_pyathena.parent
parent
Definition:
test_pyathena.py:15
ExtraParticlesPhysicsTool::ExtraParticlesPhysicsTool
ExtraParticlesPhysicsTool(const std::string &type, const std::string &name, const IInterface *parent)
Standard constructor.
Definition:
ExtraParticlesPhysicsTool.cxx:31
ExtraParticlesPhysicsTool::ConstructProcess
virtual void ConstructProcess() override final
Definition:
ExtraParticlesPhysicsTool.cxx:101
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:228
ExtraParticlesPhysicsTool::GetPhysicsOption
virtual ExtraParticlesPhysicsTool * GetPhysicsOption() override final
Implements.
Definition:
ExtraParticlesPhysicsTool.cxx:57
ExtraParticlesPhysicsTool::ConstructParticle
virtual void ConstructParticle() override final
Definition:
ExtraParticlesPhysicsTool.cxx:64
ExtraParticlesPhysicsTool::~ExtraParticlesPhysicsTool
virtual ~ExtraParticlesPhysicsTool()
Destructor.
Definition:
ExtraParticlesPhysicsTool.cxx:43
Generated on Thu Mar 20 2025 21:10:43 for ATLAS Offline Software by
1.8.18