English Français

Documentation / Developer's manual

Available modules

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Sampler: TQMC.h Source File
Uranie / Sampler v4.9.0
/* @license-end */
TQMC.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
33#ifndef TQMC_H
34#define TQMC_H
72#include <iostream>
73using std::cout;
74using std::endl;
75
76#include "TSamplerDeterminist.h"
77#include "TSequence.h"
78
79namespace URANIE
80{
81namespace Sampler
82{
84{
85
86 // Attributes
87private:
89 TString _sSequence;
90
91 // Operations
92public:
93 //---------------------------------------------
97
98 TQMC(URANIE::DataServer::TDataServer *tds, Option_t *option, Int_t nCalcul);
99
101 virtual ~TQMC();
103
104 //---------------------------------------------
108
109// void createTuple();
111 //---------------------------------------------
115
116 virtual void generateSample(Option_t *option = "");
118
119 //---------------------------------------------
123
124 virtual void printLog(Option_t *option = "");
126
127 ClassDef(URANIE::Sampler::TQMC, ID_SAMPLER)
128 //Classe de g�n�ration par Quasi Monte-Carlo
129};
130} // Fin du namespace Sampler
131} // Fin du namespace URANIE
132
133#endif
134// fin du fichier $RCSfile$.
Creation of the abstract class TSamplerDeterminist.
Description of a variable (field).
Definition TQMC.h:84
virtual void generateSample(Option_t *option="")
Generates the sample.
virtual void printLog(Option_t *option="")
Prints the log.
TString _sSequence
Definition TQMC.h:89
TQMC(URANIE::DataServer::TDataServer *tds, Option_t *option, Int_t nCalcul)
Constructor from a TDataServer, the name of the method and the size of the sample.
virtual ~TQMC()
Default destructor.
TSequence * _Sequence
Definition TQMC.h:88
Definition TSamplerDeterminist.h:44
Description of a sequence (qMC)
Definition TSequence.h:46
Definition TAMHCopula.h:60