File indexing completed on 2025-12-16 10:29:40
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef ROOT_Minuit2_MnGlobalCorrelationCoeff
0011 #define ROOT_Minuit2_MnGlobalCorrelationCoeff
0012
0013 #include "Minuit2/MnConfig.h"
0014 #include "Minuit2/MnMatrix.h"
0015
0016 #include <vector>
0017
0018 namespace ROOT {
0019
0020 namespace Minuit2 {
0021
0022
0023
0024
0025 class MnGlobalCorrelationCoeff {
0026
0027 public:
0028 MnGlobalCorrelationCoeff() : fGlobalCC(std::vector<double>()), fValid(false) {}
0029
0030 MnGlobalCorrelationCoeff(const MnAlgebraicSymMatrix &);
0031
0032 const std::vector<double> &GlobalCC() const { return fGlobalCC; }
0033
0034 bool IsValid() const { return fValid; }
0035
0036 private:
0037 std::vector<double> fGlobalCC;
0038 bool fValid;
0039 };
0040
0041 }
0042
0043 }
0044
0045 #endif