English Français

Documentation / Manuel développeur

Modules disponibles

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Sampler: TCopula.h Source File
Uranie / Sampler v4.9.0
/* @license-end */
TCopula.h
Go to the documentation of this file.
1
2// 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
41#ifndef TCOPULA_H
42#define TCOPULA_H
43
45#include "TMatrixD.h"
46
48#include "TSamplerStochastic.h"
49
50#include <iostream>
51using std::cout;
52using std::endl;
53
54namespace URANIE
55{
56namespace Sampler
57{
59{
60 // Attributes
61public:
62 TMatrixD _matUValue;
63private:
64public:
65 //---------------------------------------------
69
70 TCopula(URANIE::DataServer::TDataServer *tds, Option_t *option,
71 Int_t nCalcul);
72
74 virtual ~TCopula();
76
77 //---------------------------------------------
81
85 void generateSample(Option_t *option = "");
87
90 virtual void generateUMatrix(Option_t *option) = 0;
92
93 //---------------------------------------------
97 virtual void printLog(Option_t *option = "");
99
100 ClassDef(URANIE::Sampler::TCopula, ID_SAMPLER)
101 //Classe de
102};
103
104} // Fin du namespace Sampler
105} // Fin du namespace URANIE
106#endif
Creation of the abstract class TSamplerStochastic.
Description of the class TCopula.
Definition TCopula.h:59
virtual void printLog(Option_t *option="")
Prints the log.
TCopula(URANIE::DataServer::TDataServer *tds, Option_t *option, Int_t nCalcul)
Constructor with a TDataServer, the options and the size of the sample.
TMatrixD _matUValue
The matrix of U values
Definition TCopula.h:62
void generateSample(Option_t *option="")
Generates the sample.
virtual void generateUMatrix(Option_t *option)=0
Generates the matrix of U.
virtual ~TCopula()
Default destructor.
Definition TSamplerStochastic.h:44
Definition TAMHCopula.h:60