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
PhysicsAnalysis
HiggsPhys
Run2
HZZ
Tools
ZMassConstraint
src
TestAthenaConstraintFit.h
Go to the documentation of this file.
1
// Dear emacs, this is -*- c++ -*-
2
3
/*
4
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
5
*/
6
7
#ifndef TESTATHENACONSTRAINTFIT_H
8
#define TESTATHENACONSTRAINTFIT_H
9
10
// Gaudi/Athena include(s):
11
#include "
AthenaBaseComps/AthAlgorithm.h
"
12
#include "
AsgTools/ToolHandle.h
"
13
14
// Local include(s):
15
#include "
ZMassConstraint/IConstraintFit.h
"
16
17
class
TestAthenaConstraintFit
:
public
AthAlgorithm
{
18
19
public
:
21
TestAthenaConstraintFit
(
const
std::string&
name
, ISvcLocator* svcLoc );
22
24
virtual
StatusCode
initialize
();
26
virtual
StatusCode
execute
();
27
28
private
:
29
std::string
m_electronContName
;
30
std::string
m_vertexContName
;
31
32
ToolHandle<ZMassConstraint::IConstraintFit>
m_constraintFit
;
33
34
};
// class TestAthenaConstraintFit
35
36
#endif // TESTATHENACONSTRAINTFIT_H
37
TestAthenaConstraintFit::initialize
virtual StatusCode initialize()
Function initialising the algorithm.
Definition:
TestAthenaConstraintFit.cxx:26
IConstraintFit.h
AthAlgorithm.h
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
TestAthenaConstraintFit::m_constraintFit
ToolHandle< ZMassConstraint::IConstraintFit > m_constraintFit
Definition:
TestAthenaConstraintFit.h:32
AthAlgorithm
Definition:
AthAlgorithm.h:47
TestAthenaConstraintFit::m_electronContName
std::string m_electronContName
Definition:
TestAthenaConstraintFit.h:29
TestAthenaConstraintFit
Definition:
TestAthenaConstraintFit.h:17
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
TestAthenaConstraintFit::execute
virtual StatusCode execute()
Function executing the algorithm.
Definition:
TestAthenaConstraintFit.cxx:38
TestAthenaConstraintFit::TestAthenaConstraintFit
TestAthenaConstraintFit(const std::string &name, ISvcLocator *svcLoc)
Regular Algorithm constructor.
Definition:
TestAthenaConstraintFit.cxx:16
ToolHandle.h
TestAthenaConstraintFit::m_vertexContName
std::string m_vertexContName
Definition:
TestAthenaConstraintFit.h:30
Generated on Sun Apr 6 2025 21:19:46 for ATLAS Offline Software by
1.8.18