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
InnerDetector
InDetCalibTools
TRT_CalibTools
TRT_CalibTools
IAccumulator.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
#ifndef TRT_CALIBTOOLS__IACCUMULATOR_H
6
#define TRT_CALIBTOOLS__IACCUMULATOR_H
7
/********************************************************************
8
9
NAME: IAccumulator
10
PACKAGE: TRT_AlignTOOLS
11
12
AUTHORS: Jorgen Beck Hansen
13
CREATED: December 2005
14
15
PURPOSE: Alignment info accumulator Tool interface
16
17
********************************************************************/
18
19
// INCLUDES:
20
21
#include <vector>
22
#include "GaudiKernel/IAlgTool.h"
23
#include "
TRT_CalibData/IdentifiedProfileHistogram.h
"
24
#include "Identifier/Identifier.h"
25
26
namespace
TRT
{
27
class
TrackInfo;
28
}
29
namespace
Trk
{
30
class
Track
;
31
}
32
33
typedef
IdentifiedProfileHistogram<Identifier>
IdentifierProfileHistogram
;
34
35
static
const
InterfaceID IID_IAccumulator(
"IAccumulator"
, 1, 0);
36
37
class
IAccumulator
:
virtual
public
IAlgTool {
38
public
:
39
40
virtual
StatusCode
accumulate
(
const
TRT::TrackInfo
* inputTrack) = 0 ;
41
virtual
std::vector<IdentifierProfileHistogram*>
getHistograms
() {
return
std::vector<IdentifierProfileHistogram*>() ; }
42
43
virtual
StatusCode
finalize
() = 0;
44
45
static
const
InterfaceID&
interfaceID
();
46
};
47
48
inline
const
InterfaceID&
IAccumulator::interfaceID
(){
49
return
IID_IAccumulator;
50
}
51
#endif // TRT_CALIBTOOLS__IACCUMULATOR_H
52
IdentifiedProfileHistogram
Definition:
IdentifiedProfileHistogram.h:34
IAccumulator::interfaceID
static const InterfaceID & interfaceID()
Definition:
IAccumulator.h:48
IdentifierProfileHistogram
IdentifiedProfileHistogram< Identifier > IdentifierProfileHistogram
Definition:
IAccumulator.h:33
TRT::TrackInfo
Definition:
InnerDetector/InDetCalibEvent/TRT_CalibData/TRT_CalibData/TrackInfo.h:83
TRT
Definition:
HitInfo.h:33
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
IAccumulator::finalize
virtual StatusCode finalize()=0
IdentifiedProfileHistogram.h
Trk
Ensure that the ATLAS eigen extensions are properly loaded.
Definition:
FakeTrackBuilder.h:9
IAccumulator
Definition:
IAccumulator.h:37
Track
Definition:
TriggerChamberClusterOnTrackCreator.h:21
IAccumulator::getHistograms
virtual std::vector< IdentifierProfileHistogram * > getHistograms()
Definition:
IAccumulator.h:41
IAccumulator::accumulate
virtual StatusCode accumulate(const TRT::TrackInfo *inputTrack)=0
Generated on Thu May 8 2025 21:10:40 for ATLAS Offline Software by
1.8.18