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
TileCalorimeter
TileCalib
TileCalibAlgs
TileCalibAlgs
ITileCalibTool.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 TILECALIBALG_ITILECALIBTOOL_H
6
#define TILECALIBALG_ITILECALIBTOOL_H
7
8
// GAUDI includes
9
10
#include "GaudiKernel/IAlgTool.h"
11
12
class
TFile;
13
14
// Declare the interfaceID
15
16
static
const
InterfaceID IID_ITileCalibTool(
"ITileCalibTool"
,1,0);
17
18
class
ITileCalibTool
:
virtual
public
IAlgTool
19
{
20
public
:
21
static
const
InterfaceID&
interfaceID
() {
return
IID_ITileCalibTool; }
22
virtual
~ITileCalibTool
() {};
23
24
virtual
StatusCode
initialize
() = 0;
25
virtual
StatusCode
initNtuple
(
int
runNumber
,
int
runType
, TFile *
rootfile
) = 0;
26
virtual
StatusCode
execute
() = 0;
27
virtual
StatusCode
finalizeCalculations
() = 0;
28
virtual
StatusCode
writeNtuple
(
int
runNumber
,
int
runType
, TFile *
rootfile
) = 0;
29
virtual
StatusCode
finalize
() = 0;
30
};
31
32
#endif // #ifndef TILECALIBALG_ITILECALIBTOOL_H
ITileCalibTool::writeNtuple
virtual StatusCode writeNtuple(int runNumber, int runType, TFile *rootfile)=0
ITileCalibTool::initNtuple
virtual StatusCode initNtuple(int runNumber, int runType, TFile *rootfile)=0
ITileCalibTool
Definition:
ITileCalibTool.h:19
LArCalib_HVScale2NtupleConfig.rootfile
string rootfile
Definition:
LArCalib_HVScale2NtupleConfig.py:83
ITileCalibTool::interfaceID
static const InterfaceID & interfaceID()
Definition:
ITileCalibTool.h:21
ITileCalibTool::finalizeCalculations
virtual StatusCode finalizeCalculations()=0
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
ITileCalibTool::execute
virtual StatusCode execute()=0
python.OnlineISConfiguration.runType
def runType
Definition:
OnlineISConfiguration.py:112
DeMoAtlasDataLoss.runNumber
string runNumber
Definition:
DeMoAtlasDataLoss.py:64
ITileCalibTool::finalize
virtual StatusCode finalize()=0
ITileCalibTool::initialize
virtual StatusCode initialize()=0
ITileCalibTool::~ITileCalibTool
virtual ~ITileCalibTool()
Definition:
ITileCalibTool.h:22
Generated on Wed May 7 2025 21:11:28 for ATLAS Offline Software by
1.8.18