File indexing completed on 2026-08-06 09:38:17
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef LWH_AIAnalysisFactory_H
0010 #define LWH_AIAnalysisFactory_H
0011
0012
0013
0014 #include <string>
0015
0016
0017
0018 namespace AIDA {
0019
0020 class IDataPointSetFactory;
0021 class IFitFactory;
0022 class IFunctionFactory;
0023 class IPlotterFactory;
0024 class ITupleFactory;
0025 class ITreeFactory;
0026 class ITree;
0027 class IHistogramFactory;
0028
0029 class IAnalysisFactory {
0030
0031 public:
0032
0033 virtual ~IAnalysisFactory() {}
0034
0035 virtual ITreeFactory * createTreeFactory() = 0;
0036 virtual IHistogramFactory * createHistogramFactory(ITree & tree) = 0;
0037 virtual IDataPointSetFactory * createDataPointSetFactory(ITree &) = 0;
0038 virtual ITupleFactory * createTupleFactory(ITree &) = 0;
0039 virtual IFunctionFactory * createFunctionFactory(ITree &) = 0;
0040 virtual IFitFactory * createFitFactory() = 0;
0041 virtual IPlotterFactory * createPlotterFactory(int = 0, char * * = 0,
0042 const std::string & = "",
0043 const std::string & = "") = 0;
0044
0045 };
0046
0047 }
0048
0049
0050
0051
0052
0053
0054
0055 #endif