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:
29
31
32 const std::vector<double> &GlobalCC() const { return fGlobalCC; }
33
34 bool IsValid() const { return fValid; }
35
36private:
37 std::vector<double> fGlobalCC;
38 bool fValid;
39};
40
41} // namespace Minuit2
42
43} // namespace ROOT
44
45#endif // ROOT_Minuit2_MnGlobalCorrelationCoeff
Class describing a symmetric matrix of size n.
Definition MnMatrix.h:438
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...