1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-06-22 08:52:01 +01:00

first root finder class implementation

This commit is contained in:
2014-09-22 15:19:30 +01:00
parent 8188a5541f
commit 4d19c23400
12 changed files with 499 additions and 76 deletions

View File

@ -24,62 +24,67 @@ BUILT_SOURCES = AsciiParser.hpp MathParser.hpp
lib_LTLIBRARIES = libLatAnalyze.la
libLatAnalyze_la_SOURCES =\
AsciiFile.cpp \
AsciiParser.ypp \
AsciiLexer.lpp \
Chi2Function.cpp \
CompiledFunction.cpp \
CompiledModel.cpp \
Exceptions.cpp \
File.cpp \
FitInterface.cpp \
Function.cpp \
Global.cpp \
GslQagsIntegrator.cpp \
includes.hpp \
Mat.cpp \
Math.cpp \
MathInterpreter.cpp \
MathParser.ypp \
MathLexer.lpp \
MatSample.cpp \
Minimizer.cpp \
Model.cpp \
Plot.cpp \
RandGen.cpp \
XmlReader.cpp \
XYSampleData.cpp \
XYStatData.cpp \
XML/tinyxml2.cpp \
libLatAnalyze_la_SOURCES = \
AsciiFile.cpp \
AsciiParser.ypp \
AsciiLexer.lpp \
Chi2Function.cpp \
CompiledFunction.cpp \
CompiledModel.cpp \
Exceptions.cpp \
File.cpp \
FitInterface.cpp \
Function.cpp \
Global.cpp \
GslHybridRootFinder.cpp\
GslQagsIntegrator.cpp \
includes.hpp \
Mat.cpp \
Math.cpp \
MathInterpreter.cpp \
MathParser.ypp \
MathLexer.lpp \
MatSample.cpp \
Model.cpp \
Plot.cpp \
RandGen.cpp \
Solver.cpp \
TabFunction.cpp \
XmlReader.cpp \
XYSampleData.cpp \
XYStatData.cpp \
XML/tinyxml2.cpp \
../config.h
libLatAnalyze_ladir = $(pkgincludedir)
libLatAnalyze_la_HEADERS =\
AsciiFile.hpp \
Chi2Function.hpp \
CompiledFunction.hpp \
CompiledModel.hpp \
Dataset.hpp \
Exceptions.hpp \
FitInterface.hpp \
Function.hpp \
File.hpp \
Global.hpp \
GslQagsIntegrator.hpp \
Integrator.hpp \
IoObject.hpp \
Mat.hpp \
Math.hpp \
MathInterpreter.hpp \
MatSample.hpp \
Minimizer.hpp \
Model.hpp \
ParserState.hpp \
Plot.hpp \
RandGen.hpp \
StatArray.hpp \
XmlReader.hpp \
XYSampleData.hpp \
libLatAnalyze_la_HEADERS = \
AsciiFile.hpp \
Chi2Function.hpp \
CompiledFunction.hpp \
CompiledModel.hpp \
Dataset.hpp \
Exceptions.hpp \
FitInterface.hpp \
Function.hpp \
File.hpp \
Global.hpp \
GslHybridRootFinder.hpp\
GslQagsIntegrator.hpp \
Integrator.hpp \
IoObject.hpp \
Mat.hpp \
Math.hpp \
MathInterpreter.hpp \
MatSample.hpp \
Minimizer.hpp \
Model.hpp \
ParserState.hpp \
Plot.hpp \
RandGen.hpp \
TabFunction.hpp \
Solver.hpp \
StatArray.hpp \
XmlReader.hpp \
XYSampleData.hpp \
XYStatData.hpp
if HAVE_MINUIT
libLatAnalyze_la_SOURCES += MinuitMinimizer.cpp