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
Control
SGMon
SGAudCore
SGAudCore
ISGAudSvc.h
Go to the documentation of this file.
1
3
/*
4
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
5
*/
6
7
// ISGAudSvc.h
8
// Header file for class ISGAudSvc
9
// Author: Ilija Vukotic<ivukotic@cern.ch>
11
#ifndef SGAUDCORE_ISGAUDSVC_H
12
#define SGAUDCORE_ISGAUDSVC_H
13
14
// STL includes
15
16
// FrameWork includes
17
#include "GaudiKernel/IService.h"
18
#include "GaudiKernel/ClassID.h"
19
20
class
ISGAudSvc
:
virtual
public
IService
21
{
22
24
// Public methods:
26
public
:
27
30
virtual
~ISGAudSvc
();
31
32
virtual
bool
SGSetCurrentAlg
(){
return
true
;};
//std::string CurrAlg
33
34
virtual
void
SGAudit
(
const
std::string&
/*key*/
,
const
CLID
&
/*id*/
,
35
const
int
&
/*fnc*/
,
const
int
&
/*store_id*/
) {};
36
37
virtual
void
setFakeCurrentAlg
(
const
std::string&){}
//For custom increased granularity
38
virtual
void
clearFakeCurrentAlg
(){}
39
41
// Const methods:
43
static
const
InterfaceID&
interfaceID
();
44
46
// Non-const methods:
48
49
};
50
51
// I/O operators
53
55
// Inline methods:
57
inline
const
InterfaceID&
ISGAudSvc::interfaceID
()
58
{
59
static
const
InterfaceID IID_ISGAudSvc(
"ISGAudSvc"
, 1, 0);
60
return
IID_ISGAudSvc;
61
}
62
63
#endif
ISGAudSvc::SGSetCurrentAlg
virtual bool SGSetCurrentAlg()
Definition:
ISGAudSvc.h:32
ISGAudSvc::setFakeCurrentAlg
virtual void setFakeCurrentAlg(const std::string &)
Definition:
ISGAudSvc.h:37
ISGAudSvc::clearFakeCurrentAlg
virtual void clearFakeCurrentAlg()
Definition:
ISGAudSvc.h:38
ISGAudSvc::interfaceID
static const InterfaceID & interfaceID()
Definition:
ISGAudSvc.h:57
CLID
uint32_t CLID
The Class ID type.
Definition:
Event/xAOD/xAODCore/xAODCore/ClassID_traits.h:47
ISGAudSvc::~ISGAudSvc
virtual ~ISGAudSvc()
Destructor:
Definition:
ISGAudSvc.cxx:18
ISGAudSvc
Definition:
ISGAudSvc.h:21
ISGAudSvc::SGAudit
virtual void SGAudit(const std::string &, const CLID &, const int &, const int &)
Definition:
ISGAudSvc.h:34
Generated on Mon Apr 7 2025 21:12:19 for ATLAS Offline Software by
1.8.18