English Français

Documentation / Developer's manual

Available modules

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Sampler: TUniforme.h Source File
Uranie / Sampler  v4.10.0
/* @license-end */
TUniforme.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/>.
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 
27 class TUniforme: public TDistribution
28 {
29 
30 private:
31  Double_t a;
32  Double_t b;
33 
34 public:
35  TUniforme(Double_t x, Double_t y);
36  ~TUniforme();
37 
38  ClassDef(TUniforme, ID_SAMPLER);
39  // DDDfsf
40 };
41 #endif
42 
Double_t b
Definition: TUniforme.h:32
Double_t a
Definition: TUniforme.h:31
Definition: TUniforme.h:27
Definition: TDistribution.h:64
TUniforme(Double_t x, Double_t y)
ClassDef(TUniforme, ID_SAMPLER)
Creation of the abstract class TDistribution.
~TUniforme()
Definition: TUniforme.cxx:31