English Français

Documentation / Developer's manual

Available modules

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Sampler: TMelange.h Source File
Uranie / Sampler  v4.10.0
/* @license-end */
TMelange.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 TMELANGE_H
18 #define TMELANGE_H
19 
20 #ifndef ROOT_TNtupleD
21 #include "TNtupleD.h"
22 #endif
23 #ifndef ROOT_TFile
24 #include "TFile.h"
25 #endif
26 #ifndef ROOT_TRandom
27 #include "TRandom.h"
28 #endif
29 #ifndef ROOT_TArrayF
30 #include "TArrayF.h"
31 #endif
32 
33 #include <iostream>
34 using std::cout;
35 using std::endl;
36 
37 #include "Rtypes.h"
38 #include "TNormale.h"
39 
40 class TList;
41 class TMelange
42 {
43  // Associations
44  // Attributes
45 private:
48  TList* lLoi;
51  Int_t _taille;
53  Int_t _dimMelange;
54  TNtupleD* _nt;
56  TRandom* _rand;
59  // Operations
60 public:
61  TMelange(Int_t n);
62  ~TMelange();
63  void _printlog();
64  void setTaille(Int_t n)
65  {
66  _taille = n;
67  }
68  Int_t getTaille()
69  {
70  return _taille;
71  }
73  {
74  return _tailleMelange;
75  }
76  Double_t eval(TVectorD X);
77  Double_t eval(Double_t x);
78  Int_t getDimMelange()
79  {
80  return _dimMelange;
81  }
82  TNtupleD* getTuple()
83  {
84  return _nt;
85  }
86  TVectorD getSeuil();
87  Double_t getProb(Int_t i);
88  TVectorD getMean(Int_t i);
89  TVectorD getMean();
90  TVectorD getVariance();
91  TVectorD getSigma();
92  TMatrixD getMatEcartTypeCorrelation(Int_t i);
93  TMatrixD getMatEcartTypeCorrelation();
94  TVectorD getSigma(Int_t i);
95  TMatrixD getMatCorrelation(Int_t i);
96  TMatrixD getMatCovariance(Int_t i);
97  TMatrixD getMatCovariance();
98  TMatrixD getMatCorrelation();
99  Double_t getObs();
100  void simulationMelange();
101  void addLoi(TVectorD moy, TMatrixD ecartTypeCorr, Double_t proba);
102  void removeLoi(Int_t i);
103  void addTuple(TNtupleD* t);
104  TVectorD LoiDeZ(TVectorD X);
105  TVectorD discrimination(TVectorD X);
106  void reset();
107  void remplacer(Int_t i, TVectorD M, TMatrixD A);
108  void afficher();
109 };
110 
111 #endif
Int_t _dimMelange
Sample size to be simulated.
Definition: TMelange.h:53
TNormale * f
Definition: TMelange.h:46
TNtupleD * getTuple()
Definition: TMelange.h:82
void addLoi(TVectorD moy, TMatrixD ecartTypeCorr, Double_t proba)
Definition: TMelange.cxx:409
void simulationMelange()
Classic simulation of a mixing.
Definition: TMelange.cxx:335
Definition: TNormale.h:47
void _printlog()
Definition: TMelange.cxx:37
TNtupleD * _nt
Definition: TMelange.h:54
Double_t eval(TVectorD X)
Definition: TMelange.cxx:75
Int_t getTaille()
Definition: TMelange.h:68
TVectorD LoiDeZ(TVectorD X)
Computes the conditional repartition function for X belonging to a mode.
Definition: TMelange.cxx:449
TRandom * _rand
Tuple in which the sample is stocked.
Definition: TMelange.h:56
TList * lLoi
Normal law used for intermediary calculations.
Definition: TMelange.h:48
TVectorD discrimination(TVectorD X)
Computes for each mode, the &#39;a posteriori&#39; probability that X belongs to the mode. Enables to undertake a discriminant analysis.
Definition: TMelange.cxx:468
TVectorD getMean()
Definition: TMelange.cxx:147
TVectorD getSigma()
Definition: TMelange.cxx:169
void reset()
Definition: TMelange.cxx:440
Int_t _tailleMelange
Chained list used to go through the mixing.
Definition: TMelange.h:50
void afficher()
Prints the characteristics of mixing modes.
Definition: TMelange.cxx:500
Double_t getObs()
Definition: TMelange.cxx:374
void setTaille(Int_t n)
Definition: TMelange.h:64
void remplacer(Int_t i, TVectorD M, TMatrixD A)
Replaces the component i by a component N(M,A)
Definition: TMelange.cxx:485
Definition: TMelange.h:41
void removeLoi(Int_t i)
Definition: TMelange.cxx:425
TMatrixD getMatCorrelation()
Definition: TMelange.cxx:289
TMatrixD getMatCovariance()
Definition: TMelange.cxx:275
TVectorD getVariance()
Definition: TMelange.cxx:161
Int_t _taille
Definition: TMelange.h:51
Int_t getTailleMelange()
Definition: TMelange.h:72
TMatrixD getMatEcartTypeCorrelation()
Definition: TMelange.cxx:299
TVectorD getSeuil()
Definition: TMelange.cxx:308
Int_t getDimMelange()
Definition: TMelange.h:78
TMelange(Int_t n)
Generator of random number.
Definition: TMelange.cxx:45
void addTuple(TNtupleD *t)
Definition: TMelange.cxx:393
~TMelange()
Definition: TMelange.cxx:69
Double_t getProb(Int_t i)
Definition: TMelange.cxx:99