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
AthenaExamples
AthExHive
AthExHive
CondDataObjY.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 CONDALGS_CONDDATAOBJY_H
6
#define CONDALGS_CONDDATAOBJY_H
7
8
class
CondDataObjY
{
9
10
public
:
11
12
CondDataObjY
():
m_val
(0) {};
13
CondDataObjY
(
float
f
):
m_val
(
f
) {};
14
virtual
~CondDataObjY
(){};
15
16
void
val
(
float
f
) {
m_val
=
f
; }
17
float
val
()
const
{
return
m_val
; }
18
19
private
:
20
float
m_val
;
21
};
22
23
#include <iostream>
24
inline
std::ostream&
operator<<
(std::ostream&
ost
,
const
CondDataObjY
& rhs) {
25
ost
<< rhs.
val
();
26
return
ost
;
27
}
28
29
30
//using the macros below we can assign an identifier (and a version)
31
//to the type CondDataObjY
32
//This is required and checked at compile time when you try to record/retrieve
33
#include "
AthenaKernel/CLASS_DEF.h
"
34
CLASS_DEF
(
CondDataObjY
, 6664392 , 1 )
35
CLASS_DEF
(
CondCont
<
CondDataObjY
> , 207255848 , 1 )
36
37
38
#endif
CondDataObjY::val
float val() const
Definition:
CondDataObjY.h:17
python.trigbs_prescaleL1.ost
ost
Definition:
trigbs_prescaleL1.py:104
CondDataObjY::val
void val(float f)
Definition:
CondDataObjY.h:16
operator<<
std::ostream & operator<<(std::ostream &ost, const CondDataObjY &rhs)
Definition:
CondDataObjY.h:24
CondDataObjY
Definition:
CondDataObjY.h:8
CondDataObjY::CondDataObjY
CondDataObjY()
Definition:
CondDataObjY.h:12
hist_file_dump.f
f
Definition:
hist_file_dump.py:141
CondDataObjY::CondDataObjY
CondDataObjY(float f)
Definition:
CondDataObjY.h:13
CondDataObjY::m_val
float m_val
Definition:
CondDataObjY.h:20
CondCont
Hold mapping of ranges to condition objects.
Definition:
CondCont.h:811
CLASS_DEF
#define CLASS_DEF(NAME, CID, VERSION)
associate a clid and a version to a type eg
Definition:
Control/AthenaKernel/AthenaKernel/CLASS_DEF.h:67
CLASS_DEF.h
macros to associate a CLID to a type
CondDataObjY::~CondDataObjY
virtual ~CondDataObjY()
Definition:
CondDataObjY.h:14
Generated on Fri Apr 4 2025 21:08:43 for ATLAS Offline Software by
1.8.18