BOSS
7.0.4
BESIII Offline Software System
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace 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
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
v
w
z
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
x
z
Typedefs
b
c
d
e
g
h
i
l
m
n
o
p
r
s
t
v
Enumerations
_
e
f
g
h
i
l
m
o
p
r
s
t
Enumerator
a
b
c
d
e
f
i
k
l
m
n
o
p
r
s
t
u
w
x
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
m
n
p
r
s
t
v
w
Enumerations
b
c
d
e
f
g
h
i
k
l
m
n
p
r
s
t
v
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Related Functions
:
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
w
x
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
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
p
q
r
s
t
u
v
w
z
Enumerations
d
e
g
h
p
r
s
t
Enumerator
a
b
c
d
e
f
g
h
i
k
m
n
o
p
r
s
t
u
w
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
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
InstallArea/include/CalibDataSvc/CalibDataSvc/CalibCLIDNode.h
Go to the documentation of this file.
1
// $Header: /bes/bes/BossCvs/Calibration/CalibSvc/CalibDataSvc/CalibDataSvc/CalibCLIDNode.h,v 1.2 2006/04/06 02:16:44 maqm Exp $
2
3
#ifndef CalibCLIDNode_H
4
#define CalibCLIDNode_H
5
6
#include <iostream>
7
#include <string>
8
#include "GaudiKernel/DataObject.h"
9
//#include "CalibCnv/ICalibCnvSvc.h"
10
11
12
/** @class CalibCLIDNode
13
14
Trivial DataObject. Only extra data is a field to contain class id
15
of child nodes (which will contain actual calibration data set).
16
17
@author Joanne Bogart
18
$Header: /bes/bes/BossCvs/Calibration/CalibSvc/CalibDataSvc/CalibDataSvc/CalibCLIDNode.h,v 1.2 2006/04/06 02:16:44 maqm Exp $
19
20
*/
21
22
// extern const CLID& CLID_Calib_CalibCLIDNode;
23
24
class
CalibCLIDNode
:
virtual
public
DataObject {
25
26
public
:
27
28
CalibCLIDNode
(
const
CLID childClassID) :
29
DataObject(), m_childClassID(childClassID) {}
30
31
// Having these inline in include file could cause problems, in
32
// fact the static member could already be a problem. Will code
33
// linked into different shareables have different copies of
34
//
35
virtual
const
CLID&
clID
()
const
{
36
return
CalibCLIDNode::classID
();
37
}
38
static
const
CLID&
classID
();
39
40
inline
CLID
getChildClassID
()
const
{
return
m_childClassID;}
41
42
virtual
std::ostream&
fillStream
(std::ostream&
s
)
const
;
43
44
private
:
45
CLID m_childClassID;
46
static
CLID m_myClassID;
47
};
48
#endif
49
50
51
52
s
XmlRpcServer s
Definition:
HelloServer.cpp:11
CalibCLIDNode
Definition:
Calibration/CalibSvc/CalibDataSvc/CalibDataSvc-00-01-04/CalibDataSvc/CalibCLIDNode.h:24
CalibCLIDNode::classID
static const CLID & classID()
CalibCLIDNode::getChildClassID
CLID getChildClassID() const
Definition:
InstallArea/include/CalibDataSvc/CalibDataSvc/CalibCLIDNode.h:40
CalibCLIDNode::CalibCLIDNode
CalibCLIDNode(const CLID childClassID)
Definition:
InstallArea/include/CalibDataSvc/CalibDataSvc/CalibCLIDNode.h:28
CalibCLIDNode::classID
static const CLID & classID()
Definition:
CalibCLIDNode.cxx:16
CalibCLIDNode::fillStream
virtual std::ostream & fillStream(std::ostream &s) const
CalibCLIDNode::clID
virtual const CLID & clID() const
Definition:
InstallArea/include/CalibDataSvc/CalibDataSvc/CalibCLIDNode.h:35
source
InstallArea
include
CalibDataSvc
CalibDataSvc
CalibCLIDNode.h
Generated by
1.9.6