BOSS 7.1.1
BESIII Offline Software System
Loading...
Searching...
No Matches
ICalibRootSvc.h
Go to the documentation of this file.
1// $Header: /bes/bes/BossCvs/Calibration/CalibSvc/CalibDataSvc/CalibDataSvc/ICalibRootSvc.h,v 1.5 2022/02/17 22:03:24 maqm Exp $
2
3#ifndef ICalibRootSvc_h
4#define ICalibRootSvc_h
5
6/** @class ICalibRootSvc
7 Abstract interface to be satisfied by any ROOT conversion implementation.
8
9 Support write-on-demand of a calibration object in the TDS
10
11*/
12#include "GaudiKernel/IInterface.h"
13#include "GaudiKernel/ClassID.h" // for storage types
14#include <string>
15
16// Can't use ROOT_StorageType as our storage type or the
17// Persistency service will get confused. Instead give an alias
18// to one we can be pretty sure is unused for GLAST
19
20unsigned const char CALIBROOT_StorageType = CDF_StorageType;
21
22
23//static const InterfaceID IID_ICalibRootSvc("ICalibRootSvc", 1, 0);
24
25class DataObject;
26
27namespace CalibData {
28 class CalibBase;
29 class CalibBase1;
30}
31
32//class ICalibRootSvc : virtual public IInterface
33class GAUDI_API ICalibRootSvc : virtual public IInterface
34{
35public:
36 // Re-implemented from IInterface
37 //static const InterfaceID& interfaceID() { return IID_ICalibRootSvc; }
39 /**
40 * Method to write a ROOT file corresponding to TDS object
41 *
42 * @param fileName the name of the file to be written
43 * @return the document issued from the parsing
44 */
45 virtual StatusCode writeToRoot(const std::string& outputFile,
46 const std::string& tdsPath) = 0;
47 virtual StatusCode writeToRoot(const std::string& outputFile,
48 CalibData::CalibBase1 *calib) = 0;
49 virtual std::string getrootfile() = 0;
50 // Do we also want a "reset" or "clearDocument" ? Can in any case
51 // do this internally when a new document is to be parsed so might not
52 // be necessary to have explicit public method.
53};
54
55
56#endif
unsigned const char CALIBROOT_StorageType
virtual StatusCode writeToRoot(const std::string &outputFile, CalibData::CalibBase1 *calib)=0
virtual StatusCode writeToRoot(const std::string &outputFile, const std::string &tdsPath)=0
DeclareInterfaceID(ICalibRootSvc, 1, 0)
virtual std::string getrootfile()=0