English Français

Documentation / Manuel développeur

Modules disponibles

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Modeler: TMatern52CorrFunction.h Source File
Uranie / Modeler  v4.10.0
/* @license-end */
TMatern52CorrFunction.h
Go to the documentation of this file.
1 // Copyright (C) 2013-2024 CEA/DES
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU Lesser General Public License as published
6 // by the Free Software Foundation, either version 3 of the License, or any
7 // later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public License
15 // along with this program. If not, see <http://www.gnu.org/licenses/>.
18 // $Id$
19 // $Author$
20 // $Date$
21 // $Revision$
22 // $State$
24 
43 #ifndef TMATERN52CORRFUNCTION_H
44 #define TMATERN52CORRFUNCTION_H
45 
47 #include "TCorrelationFunction.h"
48 
49 extern "C"
50 {
51  int gpCorMatern52(double *X1, double *X2, int n1, int n2, int d, double *lc, double *C);
52 }
53 ;
54 namespace URANIE
55 {
56 namespace Modeler
57 {
59 {
60 
61  // Operations
62 public:
63  //---------------------------------------------
67 
74  TMatern52CorrFunction(Int_t nbDim, Double_t* corrLength = NULL);
75 
77  virtual ~TMatern52CorrFunction();
79 
80  //---------------------------------------------
84 
90  virtual void setParameters(Double_t* newParams);
91 
93 
98  void setCorrLengths(Double_t *corrLength);
100 
101  //---------------------------------------------
105 
109  virtual TCorrelationFunction* clone();
110 
112 
138  virtual void eval(Int_t n1, Double_t* x1, Int_t n2, Double_t* x2, Double_t* C);
139 
141 
142  //---------------------------------------------
146  virtual void printLog(Option_t *option = "");
148 
149  ClassDef(URANIE::Modeler::TMatern52CorrFunction, ID_MODELER)
150 };
151 
152 } // Fin du namespace Modeler
153 } // Fin du namespace URANIE
154 #endif
ROOT.
Definition: TAnisp.h:163
int gpCorMatern52(double *X1, double *X2, int n1, int n2, int d, double *lc, double *C)
Description of the class TMatern52CorrFunction.
Definition: TMatern52CorrFunction.h:58
virtual void eval(Int_t n1, Double_t *x1, Int_t n2, Double_t *x2, Double_t *C)
Compute the correlation between x1 and x2.
void setCorrLengths(Double_t *corrLength)
Sets the correlation length parameter.
TMatern52CorrFunction(Int_t nbDim, Double_t *corrLength=NULL)
Default constructor.
Description of the class TCorrelationFunction.
Definition: TCorrelationFunction.h:52
virtual void printLog(Option_t *option="")
virtual ~TMatern52CorrFunction()
Default destructor.
virtual void setParameters(Double_t *newParams)
Sets the parameters of the Matern 5/2 correlation function.
virtual TCorrelationFunction * clone()
Return a clone of the correlation function.
Interface de la classe URANIE::Modeler::TCorrelationFunction.