English Français

Documentation / Manuel développeur

Modules disponibles

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Optimizer: TMultiGenSumOfSquares.h Source File
Uranie / Optimizer  v4.10.0
/* @license-end */
TMultiGenSumOfSquares.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 
38 #ifndef TMULTIGENSUMOFSQUARES_H
39 #define TMULTIGENSUMOFSQUARES_H
40 
41 // ROOT
42 #include "Math/IFunction.h"
43 #include "TH1.h"
44 #include "TF1.h"
45 #include "TFile.h"
46 #include "TPad.h"
47 #include "TRandom3.h"
48 #include "TStyle.h"
49 
50 #include <vector>
51 #include <iostream>
52 
53 // URANIE
54 #include "Optimizer.h"
55 #include "TCode.h"
56 #include "TDataServer.h"
57 #include "TObjective.h"
58 
59 namespace URANIE
60 {
61 namespace Optimizer
62 {
63 class TMultiGenSumOfSquares: public ROOT::Math::IBaseFunctionMultiDim
64 {
65 private:
66  vector<TObjective *> _objectives;
67 public:
68  //---------------------------------------------
72  TMultiGenSumOfSquares(URANIE::DataServer::TDataServer *tds,
74  URANIE::Launcher::TCode *code);
77 
78  //---------------------------------------------
82  void init();
85  void clean();
87  void addObjective(TObjective *tobj);
89  {
90  Int_t nres = (Int_t)(_objectives.size());
91  return nres;
92  }
93  const char * getCriteriaName()
94  {
95  return _sCriteria.Data();
96  }
97  Double_t getSumOfWeight()
98  {
99  return _dSumOfWeight;
100  }
101  //---------------------------------------------
105  TMultiGenSumOfSquares * Clone() const
107  {
109  _code);
110  for (Int_t indx = 0; indx < (Int_t)(_objectives.size()); indx++)
111  theClone->addObjective(_objectives[indx]);
112  theClone->init();
113  return theClone;
114  }
115 
117  unsigned int NDim() const
118  {
119  return _ninput;
120  }
122 
123 
124  //---------------------------------------------
128  void setLog()
129  {
130  _blog = kTRUE;
131  }
132  void unsetLog()
133  {
134  _blog = kFALSE;
135  }
136 
138 
139 
140 private:
141  //---------------------------------------------
145  double DoEval(const double * x) const;
148 
149  Bool_t _blog;
150  int _ninput;
151  double * _dinputValue;
152  int _noutput;
153  double * _doutputValue;
154  Double_t _dSumOfWeight;
155  URANIE::DataServer::TDataServer *_tds;
156  URANIE::Launcher::TCode *_code;
158  TString _sCriteria;
159 
160  ClassDef(URANIE::Optimizer::TMultiGenSumOfSquares, ID_OPTIMIZER)
161  //Classe de
162 
163 };
164 } // Fin du namespace Optimizer
165 } // Fin du namespace URANIE
166 
168 
169 #endif
Rosenbrock&#39;s function (n=2) with first and second order derivatives.
Definition: TBestEstimate.h:57
NEWMAT::ColumnVector & x
Definition: TOptimizerOpt.cxx:70
Definition: TMultiGenSumOfSquares.h:63
int _noutput
Definition: TMultiGenSumOfSquares.h:152
void setLog()
Definition: TMultiGenSumOfSquares.h:128
Int_t getNObjectives()
Definition: TMultiGenSumOfSquares.h:88
double * _dinputValue
Definition: TMultiGenSumOfSquares.h:151
vector< TObjective * > _objectives
vector of objectives
Definition: TMultiGenSumOfSquares.h:66
double DoEval(const double *x) const
the DoEval method
unsigned int NDim() const
the NDIM method
Definition: TMultiGenSumOfSquares.h:117
Double_t _dSumOfWeight
The sum of weights.
Definition: TMultiGenSumOfSquares.h:154
const char * getCriteriaName()
Definition: TMultiGenSumOfSquares.h:93
Double_t getSumOfWeight()
Definition: TMultiGenSumOfSquares.h:97
double * _doutputValue
Definition: TMultiGenSumOfSquares.h:153
TMultiGenSumOfSquares * Clone() const
The clone method.
Definition: TMultiGenSumOfSquares.h:106
Bool_t _blog
Boolean for edit the log.
Definition: TMultiGenSumOfSquares.h:149
void unsetLog()
Definition: TMultiGenSumOfSquares.h:132
Interface of class URANIE::Optimize::TObjective.
URANIE::DataServer::TDataServer * _tds
Definition: TMultiGenSumOfSquares.h:155
TMultiGenSumOfSquares(URANIE::DataServer::TDataServer *tds, URANIE::Launcher::TCode *code)
Constructor with a dataserver.
TString _sCriteria
List of matrix.
Definition: TMultiGenSumOfSquares.h:158
R__EXTERN URANIE::Optimizer::TMultiGenSumOfSquares * gTMGSOS
Definition: TMultiGenSumOfSquares.h:167
Description of the class TObjective. This class computes the ojective (from L2 point of view)...
Definition: TObjective.h:61
URANIE::Launcher::TCode * _code
Pointer vers un TDS.
Definition: TMultiGenSumOfSquares.h:156
TList * _listOfDataOutput
Pointer vers un TCode.
Definition: TMultiGenSumOfSquares.h:157
int _ninput
Definition: TMultiGenSumOfSquares.h:150