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
Trigger
TrigValidation
TrigAnalysisTest
TrigAnalysisTest
ITest.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
//
6
// ITest.h
7
//
8
// Abstract object that represents a trigger analysis test.
9
//
10
#ifndef TRIGANALYSISTEST_ITEST_H
11
#define TRIGANALYSISTEST_ITEST_H
12
13
#include "
TrigDecisionTool/TrigDecisionTool.h
"
14
#include "
TrigAnalysisTest/EventPtrDef.h
"
15
16
namespace
TrigAnalysisTest
{
17
18
class
ITest
{
19
public
:
20
virtual
~ITest
() {}
21
22
// Called as even event in the file is processed.
23
virtual
void
processEvent
(
Trig::TrigDecisionTool
&trigDecTool) = 0;
24
25
// Called at the end of the job - return 0 if the test passed.
26
// Otherwise some non-zero integer.
27
virtual
int
finalize
() = 0;
28
inline
void
setEventStore
(
EventPtr_t
store
) {
m_eventStore
=
store
; }
29
inline
EventPtr_t
eventStore
() {
return
m_eventStore
; }
30
private
:
31
EventPtr_t
m_eventStore
=
nullptr
;
32
};
33
34
}
35
36
#endif
SGTest::store
TestStore store
Definition:
TestStore.cxx:23
TrigAnalysisTest::ITest::processEvent
virtual void processEvent(Trig::TrigDecisionTool &trigDecTool)=0
TrigDecisionTool.h
TrigAnalysisTest::ITest::m_eventStore
EventPtr_t m_eventStore
Definition:
ITest.h:31
TrigAnalysisTest::ITest::finalize
virtual int finalize()=0
Trig::TrigDecisionTool
Definition:
TrigDecisionTool.h:65
TrigAnalysisTest::ITest::eventStore
EventPtr_t eventStore()
Definition:
ITest.h:29
TrigAnalysisTest::ITest::setEventStore
void setEventStore(EventPtr_t store)
Definition:
ITest.h:28
StoreGateSvc
The Athena Transient Store API.
Definition:
StoreGateSvc.h:124
TrigAnalysisTest::ITest
Definition:
ITest.h:18
TrigAnalysisTest::ITest::~ITest
virtual ~ITest()
Definition:
ITest.h:20
EventPtrDef.h
TrigAnalysisTest
Definition:
BasicTriggerFired.cxx:30
Generated on Thu Apr 17 2025 21:12:31 for ATLAS Offline Software by
1.8.18