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.10.0
/* @license-end */
TCopula.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 
41 #ifndef TCOPULA_H
42 #define TCOPULA_H
43 
45 #include "TMatrixD.h"
46 
48 #include "TSamplerStochastic.h"
49 
50 #include <iostream>
51 using std::cout;
52 using std::endl;
53 
54 namespace URANIE
55 {
56 namespace Sampler
57 {
59 {
60  // Attributes
61 public:
62  TMatrixD _matUValue;
63 private:
64 public:
65  //---------------------------------------------
69  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
Definition: TAMHCopula.h:59
virtual ~TCopula()
Default destructor.
TCopula(URANIE::DataServer::TDataServer *tds, Option_t *option, Int_t nCalcul)
Constructor with a TDataServer, the options and the size of the sample.
Creation of the abstract class TSamplerStochastic.
virtual void printLog(Option_t *option="")
Prints the log.
Description of the class TCopula.
Definition: TCopula.h:58
Definition: TSamplerStochastic.h:43
TMatrixD _matUValue
The matrix of U values.
Definition: TCopula.h:62
virtual void generateUMatrix(Option_t *option)=0
Generates the matrix of U.
void generateSample(Option_t *option="")
Generates the sample.