/// \file TFit.h /// \ingroup MathCore ROOT7 /// \author Axel Naumann /// \date 2015-09-06 /// \warning This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback is welcome! /************************************************************************* * Copyright (C) 1995-2015, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_TFit #define ROOT_TFit #include #include #include "ROOT/RArrayView.h" namespace ROOT { class TFitResult { }; template class THist; template class TFunction { public: TFunction(std::function&, const std::array_view& par)> func) {} }; template TFitResult FitTo(const THist& hist, const TFunction& func, std::array_view paramInit){ return TFitResult(); } } #endif