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.10.0
/* @license-end */
TGumbelMaxDistribution.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/>.
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 
63 namespace URANIE
64 {
65 namespace DataServer
66 {
68 {
69 private:
70  Double_t _dparameterMode;
71  Double_t _dparameterScale;
72 protected:
73 public:
74  //---------------------------------------------
78 
83 
85 
90  TGumbelMaxDistribution(TString name);
91 
93 
98  TGumbelMaxDistribution(TString name, Double_t mu, Double_t beta);
99 
101 
110  Double_t beta);
111 
113  virtual ~TGumbelMaxDistribution();
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 
163  virtual void computeTheoreticalInformation();
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
ROOT.
Definition: TAttribute.h:104
Double_t _dparameterMode
the mode parameter
Definition: TGumbelMaxDistribution.h:70
virtual Double_t getParameterMode()
Get the mode parameter.
Definition: TGumbelMaxDistribution.h:129
TGumbelMaxDistribution()
Default constructor.
virtual void setParameterMode(Double_t mu, Bool_t recompute=kTRUE)
Set the mode parameter.
Description of the class TGumbelMaxDistribution.
Definition: TGumbelMaxDistribution.h:67
virtual Double_t getCDF(Double_t x)
Returns the cumulative distribution for the value x.
virtual ~TGumbelMaxDistribution()
Default destructor.
Definition: TStochAttribut.h:369
virtual Double_t getPDF(Double_t x)
Returns the probability density for the value x.
virtual Double_t getParameterScale()
Get the scale parameter.
Definition: TGumbelMaxDistribution.h:144
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.
Class of attributes following a probability density function.
Double_t _dparameterScale
the scale parameter
Definition: TGumbelMaxDistribution.h:71
Description of a variable (field).
Definition: TAttribute.h:136
virtual void printLog()
Display information specific to this class.
virtual void computeTheoreticalInformation()
Computes the theoretical values of various statistical measures.
virtual void setParameterScale(Double_t beta, Bool_t recompute=kTRUE)
Set the scale parameter.