Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework
v38r0 (2143aa4c)
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
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
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
Typedefs
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
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
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
Enumerations
a
c
d
e
f
i
l
m
n
o
p
q
r
s
t
v
Enumerator
a
b
c
d
e
f
i
j
k
l
m
n
o
p
r
s
t
u
v
w
Properties
Related Functions
:
a
b
c
d
e
g
h
i
m
o
p
r
s
t
v
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
_
b
c
e
f
g
h
i
l
m
n
o
p
r
s
t
u
z
Variables
a
b
c
d
e
g
h
i
m
o
p
r
s
t
v
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
Enumerations
Enumerator
c
e
f
p
u
v
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
PragmaOptions.h
Go to the documentation of this file.
1
/***********************************************************************************\
2
* (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations *
3
* *
4
* This software is distributed under the terms of the Apache version 2 licence, *
5
* copied verbatim in the file "LICENSE". *
6
* *
7
* In applying this licence, CERN does not waive the privileges and immunities *
8
* granted to it by virtue of its status as an Intergovernmental Organization *
9
* or submit itself to any jurisdiction. *
10
\***********************************************************************************/
11
// ===========================================================================
12
#ifndef JOBOPTIONSVC_PRAGMAOPTIONS_H_
13
#define JOBOPTIONSVC_PRAGMAOPTIONS_H_
14
// ===========================================================================
15
// Include files
16
// ===========================================================================
17
// STD & STL
18
// ===========================================================================
19
// ===========================================================================
20
// Boost
21
// ===========================================================================
22
// ===========================================================================
23
// Gaudi
24
// ===========================================================================
25
// ===========================================================================
26
// Local
27
// ===========================================================================
28
// ===========================================================================
29
30
namespace
Gaudi
{
31
namespace
Parsers {
32
// ===========================================================================
33
class
PragmaOptions
final {
34
public
:
35
PragmaOptions
() =
default
;
36
37
bool
is_print
()
const
{
return
m_is_print
; }
38
void
setIsPrint
(
bool
is_print
) {
m_is_print
=
is_print
; }
39
40
bool
is_print_options
()
const
{
return
m_is_print_options
; }
41
void
setIsPrintOptions
(
bool
is_print_options
) {
m_is_print_options
=
is_print_options
; }
42
43
bool
is_print_tree
()
const
{
return
m_is_print_tree
; }
44
void
setIsPrintTree
(
bool
is_print_tree
) {
m_is_print_tree
=
is_print_tree
; }
45
46
const
std::string
&
dumpFile
()
const
{
return
m_dump_file
; }
47
void
setDumpFile
(
std::string
dump_file ) {
m_dump_file
=
std::move
( dump_file ); }
48
49
bool
IsPrintOptions
() {
return
is_print_options
() &&
is_print
(); }
50
bool
IsPrintTree
() {
return
is_print_tree
() &&
is_print
(); }
51
bool
HasDumpFile
() {
return
!
m_dump_file
.
empty
(); }
52
53
private
:
54
bool
m_is_print
=
true
;
55
bool
m_is_print_options
=
false
;
56
bool
m_is_print_tree
=
false
;
57
std::string
m_dump_file
;
58
};
59
// ===========================================================================
60
}
// namespace Parsers
61
}
// namespace Gaudi
62
// ===========================================================================
63
#endif
std::string
STL class.
std::move
T move(T... args)
Gaudi::Parsers::PragmaOptions::setIsPrint
void setIsPrint(bool is_print)
Definition:
PragmaOptions.h:38
Gaudi::Parsers::PragmaOptions::is_print
bool is_print() const
Definition:
PragmaOptions.h:37
Gaudi::Parsers::PragmaOptions::PragmaOptions
PragmaOptions()=default
Gaudi::Parsers::PragmaOptions::m_is_print_options
bool m_is_print_options
Definition:
PragmaOptions.h:55
Gaudi::Parsers::PragmaOptions::is_print_options
bool is_print_options() const
Definition:
PragmaOptions.h:40
Gaudi::Parsers::PragmaOptions::is_print_tree
bool is_print_tree() const
Definition:
PragmaOptions.h:43
Gaudi::Parsers::PragmaOptions
Definition:
PragmaOptions.h:33
Gaudi::Parsers::PragmaOptions::m_is_print
bool m_is_print
Definition:
PragmaOptions.h:54
Gaudi::Parsers::PragmaOptions::setIsPrintOptions
void setIsPrintOptions(bool is_print_options)
Definition:
PragmaOptions.h:41
Gaudi::Parsers::PragmaOptions::setDumpFile
void setDumpFile(std::string dump_file)
Definition:
PragmaOptions.h:47
Gaudi
Header file for std:chrono::duration-based Counters.
Definition:
__init__.py:1
Gaudi::Parsers::PragmaOptions::m_is_print_tree
bool m_is_print_tree
Definition:
PragmaOptions.h:56
Gaudi::Parsers::PragmaOptions::IsPrintOptions
bool IsPrintOptions()
Definition:
PragmaOptions.h:49
Gaudi::Parsers::PragmaOptions::m_dump_file
std::string m_dump_file
Definition:
PragmaOptions.h:57
std::string::empty
T empty(T... args)
Gaudi::Parsers::PragmaOptions::HasDumpFile
bool HasDumpFile()
Definition:
PragmaOptions.h:51
Gaudi::Parsers::PragmaOptions::setIsPrintTree
void setIsPrintTree(bool is_print_tree)
Definition:
PragmaOptions.h:44
Gaudi::Parsers::PragmaOptions::IsPrintTree
bool IsPrintTree()
Definition:
PragmaOptions.h:50
Gaudi::Parsers::PragmaOptions::dumpFile
const std::string & dumpFile() const
Definition:
PragmaOptions.h:46
GaudiCoreSvc
src
JobOptionsSvc
PragmaOptions.h
Generated on Thu Jan 25 2024 17:52:19 for The Gaudi Framework by
1.8.18