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
Event
xAOD
xAODCaloEventCnv
src
ClusterDumper.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
// $Id: ClusterDumper.h 581807 2014-02-06 08:40:10Z krasznaa $
8
#ifndef XAODCREATORALGS_CLUSTERDUMPER_H
9
#define XAODCREATORALGS_CLUSTERDUMPER_H
10
11
// System include(s):
12
#include <string>
13
#include <fstream>
14
#include <mutex>
15
16
// Athena/Gaudi include(s):
17
#include "
AthenaBaseComps/AthAlgorithm.h
"
18
19
#include "
StoreGate/ReadHandleKey.h
"
20
#include "
xAODCaloEvent/CaloClusterContainer.h
"
21
22
class
ClusterDumper
:
public
AthAlgorithm
{
23
24
public
:
26
ClusterDumper
(
const
std::string&
name
, ISvcLocator* svcLoc );
27
29
virtual
StatusCode
initialize
();
31
virtual
StatusCode
execute
();
32
33
virtual
StatusCode
finalize
();
34
35
36
37
private
:
39
SG::ReadHandleKey<xAOD::CaloClusterContainer>
m_containerName
{
this
,
"ContainerName"
,
"CaloCalTopoClusters"
};
40
std::string
m_fileName
;
41
42
std::ostream*
m_out
;
43
std::ofstream
m_fileOut
;
44
45
std::mutex
m_fileMutex
;
46
47
};
// class ClusterDumper
48
49
#endif // XAODCREATORALGS_CLUSTERCREATOR_H
ReadHandleKey.h
Property holding a SG store/key/clid from which a ReadHandle is made.
ClusterDumper::m_containerName
SG::ReadHandleKey< xAOD::CaloClusterContainer > m_containerName
The key for the output xAOD::CaloClusterContainer.
Definition:
ClusterDumper.h:39
ClusterDumper::m_fileName
std::string m_fileName
Definition:
ClusterDumper.h:40
BeamSpot::mutex
std::mutex mutex
Definition:
InDetBeamSpotVertex.cxx:18
ClusterDumper
Definition:
ClusterDumper.h:22
ClusterDumper::m_out
std::ostream * m_out
Definition:
ClusterDumper.h:42
SG::ReadHandleKey< xAOD::CaloClusterContainer >
AthAlgorithm.h
ClusterDumper::finalize
virtual StatusCode finalize()
Definition:
ClusterDumper.cxx:48
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
ClusterDumper::m_fileOut
std::ofstream m_fileOut
Definition:
ClusterDumper.h:43
AthAlgorithm
Definition:
AthAlgorithm.h:47
ClusterDumper::m_fileMutex
std::mutex m_fileMutex
Definition:
ClusterDumper.h:45
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
ClusterDumper::execute
virtual StatusCode execute()
Function executing the algorithm.
Definition:
ClusterDumper.cxx:55
CaloClusterContainer.h
ClusterDumper::ClusterDumper
ClusterDumper(const std::string &name, ISvcLocator *svcLoc)
Regular algorithm constructor.
Definition:
ClusterDumper.cxx:16
ClusterDumper::initialize
virtual StatusCode initialize()
Function initialising the algorithm.
Definition:
ClusterDumper.cxx:25
Generated on Fri Apr 4 2025 21:08:27 for ATLAS Offline Software by
1.8.18