English Français

Documentation / Developer's manual

Available modules

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Optimizer: TObjectiveUncertainty.h Source File
Uranie / Optimizer v4.9.0
/* @license-end */
TObjectiveUncertainty.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
41#ifndef TOBJECTIVEUNCERTAINTY_H
42#define TOBJECTIVEUNCERTAINTY_H
43
44#include <iostream>
45
46//ROOT
47
48// Uranie
49#include "TObjective.h"
50
51namespace URANIE
52{
53namespace Optimizer
54{
56{
57private:
58 TString _systaruncert;
59public:
60 //---------------------------------------------
64
69 TObjectiveUncertainty(TString name);
73 //---------------------------------------------
77 Double_t getObjective(Double_t *dvalues, Int_t nrow);
78 void setYStar(URANIE::DataServer::TDataServer *tds, TString ystar,
79 TString ystaruncert)
80 {
81 TObjective::setYStar(tds, ystar);
82 _systaruncert = ystaruncert;
83 }
84
86 TString getSigmaName()
87 {
88 return _systaruncert;
89 }
90
92
93
94 //---------------------------------------------
98 virtual void printLog(Option_t *option = "");
100
101 ClassDef(URANIE::Optimizer::TObjectiveUncertainty, ID_OPTIMIZER)
102 //Classe de
103};
104
105} // Fin du namespace Optimizer
106} // Fin du namespace URANIE
107#endif
Interface of class URANIE::Optimize::TObjective.
Description of the class TObjectiveUncertainty.
Definition TObjectiveUncertainty.h:56
Double_t getObjective(Double_t *dvalues, Int_t nrow)
TString getSigmaName()
return the value of the attribute _systaruncert
Definition TObjectiveUncertainty.h:86
virtual void printLog(Option_t *option="")
void setYStar(URANIE::DataServer::TDataServer *tds, TString ystar, TString ystaruncert)
Definition TObjectiveUncertainty.h:78
TObjectiveUncertainty(TString name)
Constructor by name only.
virtual ~TObjectiveUncertainty()
Default destructor.
TString _systaruncert
Name of uncertainty of ystar.
Definition TObjectiveUncertainty.h:58
Description of the class TObjective. This class computes the ojective (from L2 point of view).
Definition TObjective.h:62
void setYStar(URANIE::DataServer::TDataServer *tds, TString ystar)
Definition TObjective.h:147
Rosenbrock's function (n=2) with first and second order derivatives.
Definition TBestEstimate.h:58