CGEM BOSS 6.6.5.i
BESIII Offline Software System
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"
11#include "GaudiKernel/DataSvc.h"
13using namespace std;
14/// Simple algorithm to test functioning of "the other" TDS
15class checkMdc : public Algorithm {
16
17public:
18 checkMdc(const std::string& name, ISvcLocator* pSvcLocator);
19
20 StatusCode initialize();
21
22 StatusCode execute();
23
24 StatusCode finalize();
25
26private:
27 IDataProviderSvc* m_pCalibDataSvc;
28 ICalibTreeSvc* m_pTreeSvc;
29 // Maybe something to say which kind of data to look up?
30
31};
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
Simple algorithm to test functioning of "the other" TDS.
Definition checkMdc.h:15
StatusCode initialize()
Definition checkMdc.cxx:55
checkMdc(const std::string &name, ISvcLocator *pSvcLocator)
Definition checkMdc.cxx:47
StatusCode finalize()
Definition checkMdc.cxx:118
StatusCode execute()
Definition checkMdc.cxx:94