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.10.0
/* @license-end */
TObjectiveUncertainty.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 
41 #ifndef TOBJECTIVEUNCERTAINTY_H
42 #define TOBJECTIVEUNCERTAINTY_H
43 
44 #include <iostream>
45 
46 //ROOT
47 
48 // Uranie
49 #include "TObjective.h"
50 
51 namespace URANIE
52 {
53 namespace Optimizer
54 {
56 {
57 private:
58  TString _systaruncert;
59 public:
60  //---------------------------------------------
64 
69  TObjectiveUncertainty(TString name);
71  virtual ~TObjectiveUncertainty();
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
Rosenbrock&#39;s function (n=2) with first and second order derivatives.
Definition: TBestEstimate.h:57
TString getSigmaName()
return the value of the attribute _systaruncert
Definition: TObjectiveUncertainty.h:86
TString _systaruncert
Name of uncertainty of ystar.
Definition: TObjectiveUncertainty.h:58
virtual void printLog(Option_t *option="")
Interface of class URANIE::Optimize::TObjective.
Double_t getObjective() const
Definition: TObjective.h:97
void setYStar(URANIE::DataServer::TDataServer *tds, TString ystar)
Definition: TObjective.h:147
void setYStar(URANIE::DataServer::TDataServer *tds, TString ystar, TString ystaruncert)
Definition: TObjectiveUncertainty.h:78
Description of the class TObjective. This class computes the ojective (from L2 point of view)...
Definition: TObjective.h:61
virtual ~TObjectiveUncertainty()
Default destructor.
Description of the class TObjectiveUncertainty.
Definition: TObjectiveUncertainty.h:55
TObjectiveUncertainty(TString name)
Constructor by name only.