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
DataQuality
DataQualityInterfaces
DataQualityInterfaces
PParameter.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef DQM_PERSISTENCY_PPARAMETER_H
6
#define DQM_PERSISTENCY_PPARAMETER_H
7
8
#include <string>
9
#include "TNamed.h"
10
11
class
TObject;
12
class
TDirectory;
13
14
namespace
dqm_persistency
{
15
class
PAlgorithm;
16
class
PMetadata;
17
class
PRegion;
18
class
PResult;
19
20
class
PParameter
:
public
TNamed {
21
public
:
22
PParameter
();
23
virtual
~PParameter
() { };
24
25
std::string
name
;
26
TObject*
input
;
27
PResult
*
result
;
28
PAlgorithm
*
algorithm
;
29
TObject*
reference
;
30
float
weight
;
31
bool
disableChildren
;
32
PMetadata
*
metadata
;
33
34
TObject*
shape
;
35
36
int
parentRegion
;
37
38
void
Print
(
const
Option_t*
opt
=
""
)
const
;
39
40
PRegion
*
GetParentRegion
(TDirectory& topdir);
41
42
//Get rid of Root macros that confuse Doxygen
44
ClassDef(
dqm_persistency::PParameter
, 1)
46
};
47
}
48
49
#endif //DQM_PERSISTENCY_PPARAMETER_H
dqm_persistency::PParameter::disableChildren
bool disableChildren
Definition:
PParameter.h:31
dqm_persistency::PParameter::GetParentRegion
PRegion * GetParentRegion(TDirectory &topdir)
Definition:
dqm_persistency_impl.cxx:78
make_coralServer_rep.opt
opt
Definition:
make_coralServer_rep.py:19
dqm_persistency::PParameter::input
TObject * input
Definition:
PParameter.h:26
dqm_persistency::PParameter::~PParameter
virtual ~PParameter()
Definition:
PParameter.h:23
dqm_persistency::PRegion
Definition:
PRegion.h:15
dqm_persistency::PParameter::Print
void Print(const Option_t *opt="") const
Definition:
dqm_persistency_impl.cxx:60
dqm_persistency::PParameter::metadata
PMetadata * metadata
Definition:
PParameter.h:32
dqm_persistency::PMetadata
Definition:
PMetadata.h:12
dqm_persistency::PParameter::parentRegion
int parentRegion
Definition:
PParameter.h:36
dqm_persistency::PAlgorithm
Definition:
PAlgorithm.h:14
dqm_persistency::PParameter::PParameter
PParameter()
Definition:
dqm_persistency_impl.cxx:39
dqm_persistency::PParameter::reference
TObject * reference
Definition:
PParameter.h:29
dqm_persistency::PParameter::result
PResult * result
Definition:
PParameter.h:27
dqm_persistency::PParameter::algorithm
PAlgorithm * algorithm
Definition:
PParameter.h:28
dqm_persistency::PParameter::shape
TObject * shape
Definition:
PParameter.h:34
dqm_persistency::PParameter
Definition:
PParameter.h:20
dqm_persistency::PResult
Definition:
PResult.h:14
dqm_persistency::PParameter::weight
float weight
Definition:
PParameter.h:30
dqm_persistency
Definition:
PAlgorithm.h:13
dqm_persistency::PParameter::name
std::string name
Definition:
PParameter.h:23
Generated on Fri Mar 28 2025 21:16:58 for ATLAS Offline Software by
1.8.18