BOSS 7.0.5
BESIII Offline Software System
Loading...
Searching...
No Matches
checkEstTof.h
Go to the documentation of this file.
1//$Header: /bes/bes/BossCvs/Calibration/CalibSvc/CalibTreeCnv/src/test/checkEstTof.h,v 1.1 2009/02/11 07:30:03 maqm 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/Tof/TofCalibData.h"
10#include "CalibData/Tof/bTofCalibBase.h"
11#include "CalibData/CalibModel.h"
12#include "GaudiKernel/DataSvc.h"
13#include "CalibDataSvc/ICalibTreeSvc.h"
14using namespace std;
15/// Simple algorithm to test functioning of "the other" TDS
16class checkEstTof : public Algorithm {
17
18public:
19 checkEstTof(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
34
35
Simple algorithm to test functioning of "the other" TDS.
Definition: checkEstTof.h:16
StatusCode initialize()
Definition: checkEstTof.cxx:49
StatusCode execute()
Definition: checkEstTof.cxx:88
StatusCode finalize()