Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-08-06 09:38:17

0001 // -*- C++ -*-
0002 //
0003 // AIAnalysisFactory.h is a part of ThePEG - Toolkit for HEP Event Generation
0004 // Copyright (C) 1999-2019 Leif Lonnblad
0005 //
0006 // ThePEG is licenced under version 3 of the GPL, see COPYING for details.
0007 // Please respect the MCnet academic guidelines, see GUIDELINES for details.
0008 //
0009 #ifndef LWH_AIAnalysisFactory_H
0010 #define LWH_AIAnalysisFactory_H
0011 
0012 
0013 
0014 #include <string>
0015 
0016 /** @cond DONT_DOCUMENT_STRIPPED_DOWN_AIDA_INTERFACES */
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 /** @endcond */
0050 
0051 
0052 
0053 
0054 
0055 #endif /* LWH_AIAnalysisFactory_H */