BOSS 7.1.2
BESIII Offline Software System
Loading...
Searching...
No Matches
UseDedx.h
Go to the documentation of this file.
1//$Header: /bes/bes/BossCvs/Calibration/CalibSvc/CalibROOTCnv/src/test/UseDedx.h,v 1.1 2008/04/08 08:34:13 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 UseDedx : public Algorithm {
16
17public:
18 UseDedx(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 ICalibRootSvc* m_pRootSvc;
29 // Maybe something to say which kind of data to look up?
30
31};
32
33
34
Simple algorithm to test functioning of "the other" TDS.
Definition UseDedx.h:15
UseDedx(const std::string &name, ISvcLocator *pSvcLocator)
Definition UseDedx.cxx:39
StatusCode initialize()
Definition UseDedx.cxx:48
StatusCode finalize()
Definition UseDedx.cxx:177
StatusCode execute()
Definition UseDedx.cxx:88