|
||||
File indexing completed on 2025-01-18 10:10:25
0001 // @(#)root/minuit2:$Id$ 0002 // Authors: M. Winkler, F. James, L. Moneta, A. Zsenei 2003-2005 0003 0004 /********************************************************************** 0005 * * 0006 * Copyright (c) 2005 LCG ROOT Math team, CERN/PH-SFT * 0007 * * 0008 **********************************************************************/ 0009 0010 #ifndef ROOT_Minuit2_MnTiny 0011 #define ROOT_Minuit2_MnTiny 0012 0013 namespace ROOT { 0014 0015 namespace Minuit2 { 0016 0017 class MnTiny { 0018 0019 public: 0020 MnTiny() : fOne(1.) {} 0021 0022 ~MnTiny() {} 0023 0024 double One() const; 0025 0026 double operator()(double epsp1) const; 0027 0028 private: 0029 double fOne; 0030 }; 0031 0032 } // namespace Minuit2 0033 0034 } // namespace ROOT 0035 0036 #endif // ROOT_Minuit2_MnTiny
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |