BOSS 8.0.0
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
2//2008/04/09 02:08:15 huangb Exp $
3#include "CalibData/CalibModel.h"
4#include "CalibData/Mdc/MdcCalibData.h"
5#include "CalibDataSvc/ICalibTreeSvc.h"
6#include "GaudiKernel/AlgFactory.h"
7#include "GaudiKernel/Algorithm.h"
8#include "GaudiKernel/DataSvc.h"
9#include "GaudiKernel/IDataProviderSvc.h"
10#include "GaudiKernel/MsgStream.h"
11#include "GaudiKernel/Service.h"
12#include "GaudiKernel/SmartDataPtr.h"
13#include <stdio.h>
14using namespace std;
15/// Simple algorithm to test functioning of "the other" TDS
16class checkMdc : public Algorithm {
17
18public:
19 checkMdc( const std::string& name, ISvcLocator* pSvcLocator );
20
21 StatusCode initialize();
22
23 StatusCode execute();
24
25 StatusCode finalize();
26
27private:
28 IDataProviderSvc* m_pCalibDataSvc;
29 ICalibTreeSvc* m_pTreeSvc;
30 // Maybe something to say which kind of data to look up?
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;
StatusCode initialize()
Definition checkMdc.cxx:54
checkMdc(const std::string &name, ISvcLocator *pSvcLocator)
Definition checkMdc.cxx:48
StatusCode finalize()
Definition checkMdc.cxx:109
StatusCode execute()
Definition checkMdc.cxx:88