Main Page
+
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
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
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
+
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
_
a
c
d
e
f
l
m
o
p
s
t
u
v
+
Related 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
Package Documentation
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
src
CondFormats
Common
interface
BaseKeyed.h
Go to the documentation of this file.
1
#ifndef Cond_BaseKeyed_h
2
#define Cond_BaseKeyed_h
3
4
#include "
CondFormats/Serialization/interface/Serializable.h
"
5
6
#include <string>
7
8
/* A Simple base class to avoid useless templates and infinite declaration of
9
* wrappers in dictionaries
10
*/
11
12
namespace
cond
{
13
14
class
BaseKeyed
{
15
public
:
16
BaseKeyed
() {}
17
explicit
BaseKeyed
(
std::string
const
& ikey) :
m_key
(ikey) {}
18
virtual
~BaseKeyed
() {}
19
20
std::string
const
&
key
()
const
{
return
m_key
; }
21
void
setKey
(
std::string
const
& ikey) {
m_key
= ikey; }
22
23
private
:
24
// the key as string
25
std::string
m_key
;
26
27
COND_SERIALIZABLE
;
28
};
29
30
}
// namespace cond
31
#endif
cond::BaseKeyed
Definition:
BaseKeyed.h:14
cond::BaseKeyed::BaseKeyed
BaseKeyed()
Definition:
BaseKeyed.h:16
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition:
AlCaHLTBitMon_QueryRunRegistry.py:256
cond::BaseKeyed::~BaseKeyed
virtual ~BaseKeyed()
Definition:
BaseKeyed.h:18
cond::BaseKeyed::BaseKeyed
BaseKeyed(std::string const &ikey)
Definition:
BaseKeyed.h:17
cond::BaseKeyed::setKey
void setKey(std::string const &ikey)
Definition:
BaseKeyed.h:21
cond::BaseKeyed::m_key
std::string m_key
Definition:
BaseKeyed.h:25
COND_SERIALIZABLE
#define COND_SERIALIZABLE
Definition:
Serializable.h:39
cond
Serializable.h
cond::BaseKeyed::key
std::string const & key() const
Definition:
BaseKeyed.h:20
Generated for CMSSW Reference Manual by
1.8.14