English Français

Documentation / Manuel développeur

Modules disponibles

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / DataServer: TGumbelMaxDistribution.h Source File
Uranie / DataServer v4.9.0
/* @license-end */
TGumbelMaxDistribution.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
57#ifndef TGUMBELMAXDISTRIBUTION_H
58#define TGUMBELMAXDISTRIBUTION_H
59
60//Uranie
61#include "TStochAttribut.h"
62
63namespace URANIE
64{
65namespace DataServer
66{
68{
69private:
70 Double_t _dparameterMode;
72protected:
73public:
74 //---------------------------------------------
78
83
85
91
93
98 TGumbelMaxDistribution(TString name, Double_t mu, Double_t beta);
99
101
110 Double_t beta);
111
115 //---------------------------------------------
121
126 virtual void setParameterMode(Double_t mu, Bool_t recompute = kTRUE);
127
129 virtual Double_t getParameterMode()
130 {
131 return _dparameterMode;
132 }
133
135
141 virtual void setParameterScale(Double_t beta, Bool_t recompute = kTRUE);
142
144 virtual Double_t getParameterScale()
145 {
146 return _dparameterScale;
147 }
148
150
155 virtual void setParameters(Double_t mu, Double_t beta, Bool_t recompute =
156 kTRUE);
158
165
167
170 virtual Double_t getPDF(Double_t x);
171
173
176 virtual Double_t getCDF(Double_t x);
177
179
184 virtual Double_t getInvCDF(Double_t p);
186
187 //---------------------------------------------
191 virtual void printLog(Option_t *option = "");
193
194 ClassDef(URANIE::DataServer::TGumbelMaxDistribution, ID_DATASERVER)
195 //Classe de
196};
197} // Fin du namespace DataServer
198} // Fin du namespace URANIE
199#endif
Class of attributes following a probability density function.
Description of a variable (field).
Definition TAttribute.h:138
Description of the class TGumbelMaxDistribution.
Definition TGumbelMaxDistribution.h:68
virtual Double_t getParameterMode()
Get the mode parameter.
Definition TGumbelMaxDistribution.h:129
virtual Double_t getParameterScale()
Get the scale parameter.
Definition TGumbelMaxDistribution.h:144
Double_t _dparameterScale
the scale parameter
Definition TGumbelMaxDistribution.h:71
virtual Double_t getPDF(Double_t x)
Returns the probability density for the value x.
virtual Double_t getCDF(Double_t x)
Returns the cumulative distribution for the value x.
virtual ~TGumbelMaxDistribution()
Default destructor.
TGumbelMaxDistribution()
Default constructor.
virtual void setParameterScale(Double_t beta, Bool_t recompute=kTRUE)
Set the scale parameter.
TGumbelMaxDistribution(TString name, Double_t mu, Double_t beta)
Constructor setting name, mode and scale.
virtual void computeTheoreticalInformation()
Computes the theoretical values of various statistical measures.
TGumbelMaxDistribution(TString name)
Constructor setting the name.
virtual void setParameterMode(Double_t mu, Bool_t recompute=kTRUE)
Set the mode parameter.
virtual void printLog(Option_t *option="")
Double_t _dparameterMode
the mode parameter
Definition TGumbelMaxDistribution.h:70
TGumbelMaxDistribution(URANIE::DataServer::TAttribute *att, Double_t mu, Double_t beta)
Construction of a TGumbelMaxDistribution from an existing TAttribute object.
virtual void setParameters(Double_t mu, Double_t beta, Bool_t recompute=kTRUE)
Set all the parameters.
virtual Double_t getInvCDF(Double_t p)
Returns the value corresponding to the cumulative density p.
Definition TStochAttribut.h:370
ROOT.
Definition TAttribute.h:106