Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
MnGlobalCorrelationCoeff.h
Go to the documentation of this file.
1// @(#)root/minuit2:$Id$
2// Authors: M. Winkler, F. James, L. Moneta, A. Zsenei 2003-2005
3
4/**********************************************************************
5 * *
6 * Copyright (c) 2005 LCG ROOT Math team, CERN/PH-SFT *
7 * *
8 **********************************************************************/
9
10#ifndef ROOT_Minuit2_MnGlobalCorrelationCoeff
11#define ROOT_Minuit2_MnGlobalCorrelationCoeff
12
13#include "Minuit2/MnConfig.h"
14#include "Minuit2/MnMatrix.h"
15
16#include <vector>
17
18namespace ROOT {
19
20namespace Minuit2 {
21
22/**
23 class for global correlation coefficient
24 */
26
27public:
28 MnGlobalCorrelationCoeff() : fGlobalCC(std::vector<double>()), fValid(false) {}
29
31
33
34 const std::vector<double> &GlobalCC() const { return fGlobalCC; }
35
36 bool IsValid() const { return fValid; }
37
38private:
39 std::vector<double> fGlobalCC;
40 bool fValid;
41};
42
43} // namespace Minuit2
44
45} // namespace ROOT
46
47#endif // ROOT_Minuit2_MnGlobalCorrelationCoeff
Class describing a symmetric matrix of size n.
Definition LASymMatrix.h:45
class for global correlation coefficient
const std::vector< double > & GlobalCC() const
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...