English Français

Documentation / Manuel développeur

Modules disponibles

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Sampler: TUniforme.h Source File
Uranie / Sampler v4.9.0
/* @license-end */
TUniforme.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/>.
17#ifndef TNUNIFORME_H
18#define TNUNIFORME_H
19
20#include <iostream>
21#include "Rtypes.h"
22
23#ifndef TDISTRIBUTION_H
24#include "TDistribution.h"
25#endif
26
28{
29
30private:
31 Double_t a;
32 Double_t b;
33
34public:
35 TUniforme(Double_t x, Double_t y);
36 ~TUniforme();
37
38 ClassDef(TUniforme, ID_SAMPLER);
39 // DDDfsf
40};
41#endif
42
Creation of the abstract class TDistribution.
Definition TDistribution.h:65
Definition TUniforme.h:28
~TUniforme()
Definition TUniforme.cxx:31
TUniforme(Double_t x, Double_t y)
Double_t a
Definition TUniforme.h:31
ClassDef(TUniforme, ID_SAMPLER)
Double_t b
Definition TUniforme.h:32