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
TrigT1
L1Topo
L1TopoAlgorithms
L1TopoAlgorithms
AnomDetVAE.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3
*/
4
// AnomDetVAE.h
5
// Created by Sagar Addepalli on 25/11/2024.
6
// addepalli.sagar@CERNSPAMNOT.CH
7
8
#ifndef __TopoCore__ADVAE_2A__
9
#define __TopoCore__ADVAE_2A__
10
11
#include <iostream>
12
#include "
L1TopoInterfaces/DecisionAlg.h
"
13
14
namespace
TCS
{
15
16
class
ADVAE_2A
:
public
DecisionAlg
{
17
public
:
18
ADVAE_2A
(
const
std::string &
name
);
19
virtual
~ADVAE_2A
();
20
21
virtual
StatusCode
initialize
();
22
23
virtual
StatusCode
processBitCorrect
(
const
std::vector<TCS::TOBArray const *> & input,
24
const
std::vector<TCS::TOBArray *> & output,
25
Decision
& decison );
26
27
virtual
StatusCode
process
(
const
std::vector<TCS::TOBArray const *> & input,
28
const
std::vector<TCS::TOBArray *> & output,
29
Decision
& decison );
30
31
32
private
:
33
34
parType_t
p_NumberLeading1
= { 0 };
35
parType_t
p_NumberLeading2
= { 0 };
36
parType_t
p_NumberLeading3
= { 0 };
37
parType_t
p_NumberLeading4
= { 0 };
38
parType_t
p_minEt1
= { 0 };
39
parType_t
p_minEt2
= { 0 };
40
parType_t
p_minEt3
= { 0 };
41
parType_t
p_minEt4
= { 0 };
42
parType_t
p_AnomalyScoreThresh
[2] = { 0, 0 };
43
44
};
45
46
}
47
48
#endif
TCS::ADVAE_2A::initialize
virtual StatusCode initialize()
Definition:
AnomDetVAE.cxx:55
TCS::parType_t
uint32_t parType_t
Definition:
Parameter.h:22
TCS::ADVAE_2A::p_NumberLeading2
parType_t p_NumberLeading2
Definition:
AnomDetVAE.h:35
TCS::ADVAE_2A::p_minEt3
parType_t p_minEt3
Definition:
AnomDetVAE.h:40
TCS::ADVAE_2A::p_minEt4
parType_t p_minEt4
Definition:
AnomDetVAE.h:41
TCS::ADVAE_2A
Definition:
AnomDetVAE.h:16
TCS::DecisionAlg
Definition:
Trigger/TrigT1/L1Topo/L1TopoInterfaces/L1TopoInterfaces/DecisionAlg.h:22
TCS::ADVAE_2A::ADVAE_2A
ADVAE_2A(const std::string &name)
Definition:
AnomDetVAE.cxx:25
TCS::ADVAE_2A::p_AnomalyScoreThresh
parType_t p_AnomalyScoreThresh[2]
Definition:
AnomDetVAE.h:42
TCS::ConfigurableAlg::name
const std::string & name() const
Definition:
ConfigurableAlg.h:48
TCS::ADVAE_2A::p_minEt2
parType_t p_minEt2
Definition:
AnomDetVAE.h:39
TCS::ADVAE_2A::p_NumberLeading3
parType_t p_NumberLeading3
Definition:
AnomDetVAE.h:36
TCS::Decision
Definition:
L1Topo/L1TopoInterfaces/L1TopoInterfaces/Decision.h:19
TCS::ADVAE_2A::processBitCorrect
virtual StatusCode processBitCorrect(const std::vector< TCS::TOBArray const * > &input, const std::vector< TCS::TOBArray * > &output, Decision &decison)
Definition:
AnomDetVAE.cxx:92
TCS::ADVAE_2A::process
virtual StatusCode process(const std::vector< TCS::TOBArray const * > &input, const std::vector< TCS::TOBArray * > &output, Decision &decison)
Definition:
AnomDetVAE.cxx:202
TCS::ADVAE_2A::p_NumberLeading4
parType_t p_NumberLeading4
Definition:
AnomDetVAE.h:37
DecisionAlg.h
TCS::ADVAE_2A::p_minEt1
parType_t p_minEt1
Definition:
AnomDetVAE.h:38
TCS
Definition:
Global/GlobalSimulation/src/IO/Decision.h:18
TCS::ADVAE_2A::~ADVAE_2A
virtual ~ADVAE_2A()
Definition:
AnomDetVAE.cxx:51
TCS::StatusCode
Definition:
Trigger/TrigT1/L1Topo/L1TopoCommon/L1TopoCommon/StatusCode.h:15
TCS::ADVAE_2A::p_NumberLeading1
parType_t p_NumberLeading1
Definition:
AnomDetVAE.h:34
Generated on Tue May 6 2025 21:06:11 for ATLAS Offline Software by
1.8.18