RAIDA  1.9.0
IFitFactory.h
1 // -*- C++ -*-
2 // AID-GENERATED
3 // =========================================================================
4 // This class was generated by AID - Abstract Interface Definition
5 // DO NOT MODIFY, but use the org.freehep.aid.Aid utility to regenerate it.
6 // =========================================================================
7 #ifndef AIDA_IFITFACTORY_H
8 #define AIDA_IFITFACTORY_H 1
9 
10 // This file is part of the AIDA library
11 // Copyright (C) 2002 by the AIDA team. All rights reserved.
12 // This library is free software and under the terms of the
13 // GNU Library General Public License described in the LGPL.txt
14 
15 #include <string>
16 
17 namespace AIDA {
18 
19 class IFitData;
20 class IFitter;
21 
30 class IFitFactory {
31 
32 public:
34  virtual ~IFitFactory() { /* nop */; }
35 
36  virtual IFitData * createFitData() = 0;
37 
50  virtual IFitter * createFitter(const std::string & fitterType = "Chi2", const std::string & engineType = "", const std::string & options = "") = 0;
51 }; // class
52 } // namespace AIDA
53 #endif /* ifndef AIDA_IFITFACTORY_H */
virtual IFitter * createFitter(const std::string &fitterType="Chi2", const std::string &engineType="", const std::string &options="")=0
Create a new IFitter.
virtual ~IFitFactory()
Destructor.
Definition: IFitFactory.h:34
Definition: IFitData.h:92
Factory for fitter and fit data objects.
Definition: IFitFactory.h:30
Fitter performs fits, scans and computes contours.
Definition: IFitter.h:39