BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
checkTof.h
Go to the documentation of this file.
1//$Header: /bes/bes/BossCvs/Calibration/CalibSvc/CalibTreeCnv/src/test/checkTof.h,v 1.1.1.1
2//2008/04/09 02:08:15 huangb Exp $
3#include "CalibData/CalibModel.h"
4#include "CalibData/Tof/TofCalibData.h"
5#include "CalibData/Tof/bTofCalibBase.h"
6#include "CalibDataSvc/ICalibTreeSvc.h"
7#include "GaudiKernel/AlgFactory.h"
8#include "GaudiKernel/Algorithm.h"
9#include "GaudiKernel/DataSvc.h"
10#include "GaudiKernel/IDataProviderSvc.h"
11#include "GaudiKernel/MsgStream.h"
12#include "GaudiKernel/Service.h"
13#include "GaudiKernel/SmartDataPtr.h"
14#include <stdio.h>
15using namespace std;
16/// Simple algorithm to test functioning of "the other" TDS
17class checkTof : public Algorithm {
18
19public:
20 checkTof( const std::string& name, ISvcLocator* pSvcLocator );
21
22 StatusCode initialize();
23
24 StatusCode execute();
25
26 StatusCode finalize();
27
28private:
29 IDataProviderSvc* m_pCalibDataSvc;
30 ICalibTreeSvc* m_pTreeSvc;
31 // Maybe something to say which kind of data to look up?
32};
StatusCode initialize()
Definition checkTof.cxx:46
StatusCode finalize()
Definition checkTof.cxx:163
checkTof(const std::string &name, ISvcLocator *pSvcLocator)
Definition checkTof.cxx:41
StatusCode execute()
Definition checkTof.cxx:80