English Français

Documentation / Manuel développeur

Modules disponibles

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Optimizer: TObjectiveL1.h Source File
Uranie / Optimizer v4.9.0
/* @license-end */
TObjectiveL1.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 TOBJECTIVEL1_H
42#define TOBJECTIVEL1_H
43
44#include <iostream>
45
46//ROOT
47
48// Uranie
49#include "TObjective.h"
50
51namespace URANIE
52{
53namespace Optimizer
54{
56{
57private:
58public:
59 //---------------------------------------------
63
68 TObjectiveL1(TString name);
70 virtual ~TObjectiveL1();
72 //---------------------------------------------
76 Double_t getObjective(Double_t *dvalues, Int_t nrow);
78
79 //---------------------------------------------
83 virtual void printLog(Option_t *option = "");
85
86 ClassDef(URANIE::Optimizer::TObjectiveL1, ID_OPTIMIZER)
87 //Classe de
88};
89
90} // Fin du namespace Optimizer
91} // Fin du namespace URANIE
92#endif
Interface of class URANIE::Optimize::TObjective.
Description of the class TObjectiveL1.
Definition TObjectiveL1.h:56
Double_t getObjective(Double_t *dvalues, Int_t nrow)
virtual void printLog(Option_t *option="")
TObjectiveL1(TString name)
Constructor by name only.
virtual ~TObjectiveL1()
Default destructor.
Description of the class TObjective. This class computes the ojective (from L2 point of view).
Definition TObjective.h:62
Rosenbrock's function (n=2) with first and second order derivatives.
Definition TBestEstimate.h:58