00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef ROOT_Minuit2_MnEigen
00011 #define ROOT_Minuit2_MnEigen
00012
00013 #include "Minuit2/MnConfig.h"
00014 #include <vector>
00015
00016 namespace ROOT {
00017
00018 namespace Minuit2 {
00019
00020
00021 class MnUserCovariance;
00022
00023
00024
00025
00026
00027 class MnEigen {
00028
00029 public:
00030
00031 MnEigen() {}
00032
00033 ~MnEigen() {}
00034
00035
00036 std::vector<double> operator()(const MnUserCovariance&) const;
00037
00038 private:
00039
00040 };
00041
00042 }
00043
00044 }
00045
00046 #endif // ROOT_Minuit2_MnEigen