General constrained kinematic fit using ABC-parametrisation
This is a shared library, in order to make the library you can call
make
in the folder. This will create a library libABCfit++.so
.
When in need of help execute make help
.
You can use the shared library by pointing in your gcc command lines
-I
and -L
to this directory or generally -I
to these header
files and -L
to the directory that the libABCfit++.so
is
located. Then supply also -lABCfit++
to the command line arguments.
An example:
g++ -o yourTestOutput -I../location/to/ABCfit++ -L../location/to/ABCfit++ -lABCfit++ YourSourceFile.cxx
This library works with C++11 and above.
This library is based on ABCfit
developed by Oliver Buchmuller and Jørgen Beck Hansen. ABCfit
is available here.