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.10.0
/* @license-end */
TOA.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 TOA_H
42 #define TOA_H
43 
44 #include <iostream>
45 using std::cout;
46 using std::endl;
47 using std::cerr;
48 
50 #include "TSamplerStochastic.h"
51 
52 namespace URANIE
53 {
54 namespace Sampler
55 {
56 class TOA: public TSamplerStochastic
57 {
58 private:
59  Int_t _nSymbols;
60 public:
61  //---------------------------------------------
65  TOA(URANIE::DataServer::TDataServer *tds, Option_t *option = "oa",
67  Int_t nCalcul = 1000);
69  virtual ~TOA();
71 
72  //---------------------------------------------
76  virtual void generateSample(Option_t *option);
79 
80  //---------------------------------------------
87  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
Definition: TAMHCopula.h:59
virtual void generateSample(Option_t *option)
Generates the sample.
Description of the class TOA.
Definition: TOA.h:56
Creation of the abstract class TSamplerStochastic.
virtual ~TOA()
Default destructor.
virtual void printLog(Option_t *option="")
Prints the log.
virtual void init()
The pre-traitment step.
Definition: TSamplerStochastic.h:43
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.