Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 1.75 KB

README.md

File metadata and controls

49 lines (36 loc) · 1.75 KB

Build status master branch Codecov status master branch DOI

APLCON C++11 wrapper {#mainpage}

APLCON++ is a C++11 wrapper class around the Constrained Least Squares fitter APLCON by Volker Blobel. Please see his DESY homepage how APLCON works. Also, if you use this wrapper in a publication, don't forget to cite Volker Blobel's original work:

\bibitem{bib:blolo} 
Volker Blobel and Erich Lohrmann, 
\emph{Statistische Methoden der Datenanalyse}, 
Teubner Studienb\"{u}cher, Teubner (1998); 
e-book \url{http://www.desy.de/~blobel/eBuch.pdf}

Please report bugs and improvements!

Installation and Usage

To build this project, you need

  • GNU compiler version >4.7.2 with g++ and gfortran
  • cmake version >2.6

Then do a standard out-of-source build by executing the following inside the projects directory:

mkdir build
cd build
cmake ..
make

You'll find some executable examples and a library called libaplcon++.so inside the above created build directory.

Also have a look at the provided APLCON++ examples code how to use this interface.

Or you may read the rather sparse Doxygen documentation, which can be created with

make doc

(if cmake found the doxygen executable). A doc folder inside the project's root directory is then created, open doc/html/index.html to start reading.