English Français

Documentation / Manuel développeur

Modules disponibles

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Sampler: TPetras.h Source File
Uranie / Sampler  v4.10.0
/* @license-end */
TPetras.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 TPETRAS_H
42 #define TPETRAS_H
43 #include "TSamplerDeterminist.h"
44 
45 #include <iostream>
46 using std::cout;
47 using std::endl;
48 
49 namespace URANIE
50 {
51 namespace Sampler
52 {
54 {
55  // Attributes
56 private:
57  Int_t _nQ;
58  // Operations
59 public:
60  //---------------------------------------------
64 
68  TPetras(URANIE::DataServer::TDataServer *tds, Option_t *option, Int_t nS);
70  virtual ~TPetras();
72 
73  //---------------------------------------------
77  virtual void generateSample(Option_t *option = "");
80 
81  //---------------------------------------------
82  Int_t getLevel()
83  {
84  return _nQ;
85  }
86  //---------------------------------------------
90  virtual void printLog(Option_t *option = "");
92 
93  ClassDef(URANIE::Sampler::TPetras, ID_SAMPLER)
94  //Classe de
95 };
96 
97 } // Fin du namespace Sampler
98 } // Fin du namespace URANIE
99 #endif
100 // fin du fichier $RCSfile$.
Definition: TAMHCopula.h:59
Creation of the abstract class TSamplerDeterminist.
virtual void generateSample(Option_t *option="")
Generates the sample.
virtual void printLog(Option_t *option="")
virtual ~TPetras()
Default destructor.
TPetras(URANIE::DataServer::TDataServer *tds, Option_t *option, Int_t nS)
Default constructor.
Int_t _nQ
Definition: TPetras.h:57
Definition: TSamplerDeterminist.h:43
Description of the class URANIE::Sampler::TPetras.
Definition: TPetras.h:53
Int_t getLevel()
Definition: TPetras.h:82