English Français

Documentation / Manuel développeur

Modules disponibles

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Sampler: TOA.h Source File
Uranie / Sampler v4.9.0
/* @license-end */
TOA.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 TOA_H
42#define TOA_H
43
44#include <iostream>
45using std::cout;
46using std::endl;
47using std::cerr;
48
50#include "TSamplerStochastic.h"
51
52namespace URANIE
53{
54namespace Sampler
55{
57{
58private:
59 Int_t _nSymbols;
60public:
61 //---------------------------------------------
65
66 TOA(URANIE::DataServer::TDataServer *tds, Option_t *option = "oa",
67 Int_t nCalcul = 1000);
69 virtual ~TOA();
71
72 //---------------------------------------------
76
77 virtual void generateSample(Option_t *option);
79
80 //---------------------------------------------
87
88 virtual void init();
90
91 //---------------------------------------------
95 virtual void printLog(Option_t *option = "");
97
98 ClassDef(URANIE::Sampler::TOA, ID_SAMPLER)
99 //Classe de
100};
101
102} // Fin du namespace Sampler
103} // Fin du namespace URANIE
104#endif
Creation of the abstract class TSamplerStochastic.
Description of the class TOA.
Definition TOA.h:57
Int_t _nSymbols
The number of symbols.
Definition TOA.h:59
TOA(URANIE::DataServer::TDataServer *tds, Option_t *option="oa", Int_t nCalcul=1000)
Default constructor.
virtual void generateSample(Option_t *option)
Generates the sample.
virtual void printLog(Option_t *option="")
Prints the log.
virtual ~TOA()
Default destructor.
virtual void init()
The pre-traitment step.
Definition TSamplerStochastic.h:44
Definition TAMHCopula.h:60