BOSS
7.1.1
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
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
v
w
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
v
w
x
z
Typedefs
c
d
e
g
h
i
l
m
n
o
p
r
s
t
Enumerations
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 Symbols
:
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
v
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
h
i
j
k
l
m
n
p
r
s
t
u
v
w
z
Enumerations
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
▼
BOSS
Used Packages
Requirements
►
How to use the ERS package
Todo List
►
Namespaces
►
Classes
▼
Files
▼
File List
▼
7.1.1
►
Analysis
►
BesCxxPolicy
►
BesExamples
►
BesPolicy
▼
Calibration
►
CalibData
▼
CalibSvc
►
CalibDataSvc
►
CalibMySQLCnv
►
CalibROOTCnv
▼
CalibTreeCnv
▼
CalibTreeCnv-00-03-03
►
CalibTreeCnv
▼
src
►
cnv
►
components
▼
test
checkDedx.cxx
►
checkDedx.h
checkEmc.cxx
►
checkEmc.h
checkEstTof.cxx
►
checkEstTof.h
checkMdc.cxx
►
checkMdc.h
checkTof.cxx
►
checkTof.h
CalibTreeCnvSvc.cxx
►
CalibXmlCnvSvc
►
calibUtil
►
facilities
►
rdbModel
►
xmlBase
►
Control
►
Database
►
DetectorDescription
►
DistBoss
►
DQA
►
Emc
►
Event
►
EventDisplay
►
EventFilter
►
EvtPreSelect
►
External
►
Generator
►
InstallArea
►
LumTauAlg
►
MagneticField
►
Mdc
►
Muc
►
OfflineEvtFilter
►
Reconstruction
►
RootPolicy
►
Simulation
►
Tof
►
Trigger
►
Utilities
►
Validation
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
checkMdc.h
Go to the documentation of this file.
1
//$Header: /bes/bes/BossCvs/Calibration/CalibSvc/CalibTreeCnv/src/test/checkMdc.h,v 1.1.1.1 2008/04/09 02:08:15 huangb Exp $
2
#include <stdio.h>
3
#include "GaudiKernel/Algorithm.h"
4
#include "GaudiKernel/AlgFactory.h"
5
#include "GaudiKernel/IDataProviderSvc.h"
6
#include "GaudiKernel/Service.h"
7
#include "GaudiKernel/MsgStream.h"
8
#include "GaudiKernel/SmartDataPtr.h"
9
#include "
CalibData/Mdc/MdcCalibData.h
"
10
#include "
CalibData/CalibModel.h
"
11
#include "GaudiKernel/DataSvc.h"
12
#include "
CalibDataSvc/ICalibTreeSvc.h
"
13
using namespace
std
;
14
/// Simple algorithm to test functioning of "the other" TDS
15
class
checkMdc
:
public
Algorithm {
16
17
public
:
18
checkMdc
(
const
std::string& name, ISvcLocator* pSvcLocator);
19
20
StatusCode
initialize
();
21
22
StatusCode
execute
();
23
24
StatusCode
finalize
();
25
26
private
:
27
IDataProviderSvc* m_pCalibDataSvc;
28
ICalibTreeSvc
* m_pTreeSvc;
29
// Maybe something to say which kind of data to look up?
30
31
};
15
class
checkMdc
:
public
Algorithm {
…
};
32
33
/// Instantiation of a static factory to create instances of this algorithm
34
//static const AlgFactory<checkMdc> Factory;
35
//const IAlgFactory& UseCalibFactory = Factory;
36
//const IAlgFactory& checkMdcFactory = Factory;
37
38
39
CalibModel.h
ICalibTreeSvc.h
MdcCalibData.h
ICalibTreeSvc
Definition
ICalibTreeSvc.h:34
checkMdc
Simple algorithm to test functioning of "the other" TDS.
Definition
checkMdc.h:15
checkMdc::initialize
StatusCode initialize()
Definition
checkMdc.cxx:55
checkMdc::checkMdc
checkMdc(const std::string &name, ISvcLocator *pSvcLocator)
Definition
checkMdc.cxx:47
checkMdc::finalize
StatusCode finalize()
Definition
checkMdc.cxx:118
checkMdc::execute
StatusCode execute()
Definition
checkMdc.cxx:94
std
Definition
RootEventData/RootEventData_rootcint.cxx:38
7.1.1
Calibration
CalibSvc
CalibTreeCnv
CalibTreeCnv-00-03-03
src
test
checkMdc.h
Generated by
1.12.0