English Français

Documentation / Developer's manual

Available modules

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Optimizer: TFCNAnalyticalFunction.h Source File
Uranie / Optimizer  v4.10.0
/* @license-end */
TFCNAnalyticalFunction.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 
31 #ifndef TFCNANALYTICALFUNCTION_H
32 #define TFCNANALYTICALFUNCTION_H
33 
34 #include "Minuit2/FCNBase.h"
35 //#include "TFitterMinuit.h"
36 #include "TPad.h"
37 #include "TFile.h"
38 #include "TMethodCall.h"
39 
40 // URANIE
41 #include "Optimizer.h"
42 #include "TDataServer.h"
43 
44 namespace URANIE
45 {
46 namespace Optimizer
47 {
48 class TFCNAnalyticalFunction: public ROOT::Minuit2::FCNBase
49 {
50 
51 public:
53  _blog(kFALSE), _ninput(0), _sinput(""), _noutput(0), _soutput(""), _sCost(""),
54  _tds(NULL), _fMethod(NULL)
55 
56  {
57  }
59  TFCNAnalyticalFunction(URANIE::DataServer::TDataServer *tds, void * fcn,
60  TString sinput, TString soutput, TString scost);
62  TFCNAnalyticalFunction(URANIE::DataServer::TDataServer *tds,
63  TString sfunction, TString sinput, TString soutput);
64 
67 
68  void init();
69 
70  //---------------------------------------------
74  TMethodCall *getMethodCall() const
76  {
77  return _fMethodCall;
78  }
80 
81  double operator()(const vector<double> & par) const
82  {
83  Int_t niter = _tds->getTuple()->GetEntries();
84  if (_blog)
85  cout << " ** niter[" << niter << "]" << endl;
86  double fval = par[1];
87  _dinputValue[0] = 1.0 + niter;
88  for (int i = 0; i < _ninput; i++)
89  {
90  _dinputValue[1 + i] = par[i];
91  if (_blog)
92  cout << "**** input i[" << i << "] val[" << _dinputValue[1 + i]
93  << "]" << endl;
94  }
95  _dinputValue[_ninput + 1] = fval;
96  if (_fMethod != NULL)
97  {
98  (*_fMethod)(&_dinputValue[1], _doutputValue);
99  fval = _doutputValue[_nCost];
100  if (_blog)
101  cout << "*********** output val[" << fval << "]" << endl;
102  }
103  //Fill the output values in the input vector
104  for (int i = 0; i < _noutput; i++)
105  _dinputValue[_ninput + i + 1] = _doutputValue[i];
106  _tds->getTuple()->Fill(_dinputValue);
107  if (niter % 10)
108  {
109  _tds->draw(Form("%s:%s", _sCost.Data(), _tds->getIteratorName()),
110  "", "lp");
111  gPad->Modified();
112  gPad->Update();
113  // save the TNtuple in a TFile
114  TFile *tf = TFile::Open(_tds->getArchiveFileName(), "RECREATE");
115  _tds->getTuple()->SetDirectory(0);
116  _tds->getTuple()->Write();
117  tf->Close();
118  _tds->getTuple()->SetDirectory(gDirectory);
119  }
120  return fval;
121  }
122 
123  double Up() const
124  {
125  return 1.;
126  }
127 
128  void clean();
129 
130 private:
131  Bool_t _blog;
132  int _ninput;
133  TString _sinput;
134  double * _dinputValue;
135  int _noutput;
136  TString _soutput;
137  double * _doutputValue;
138  TString _sCost;
139  Int_t _nCost;
140  URANIE::DataServer::TDataServer *_tds;
141  void (*_fMethod)(Double_t *gin, Double_t *f); // A pointer for the analytical function
142  TMethodCall *_fMethodCall;
143 
144  ClassDef(URANIE::Optimizer::TFCNAnalyticalFunction, ID_OPTIMIZER)
145  //Classe de
146 
147 };
148 } // Fin du namespace Optimizer
149 } // Fin du namespace URANIE
150 
152 
153 #endif
Rosenbrock&#39;s function (n=2) with first and second order derivatives.
Definition: TBestEstimate.h:57
Definition: TFCNAnalyticalFunction.h:48
Bool_t _blog
Boolean for edit the log.
Definition: TFCNAnalyticalFunction.h:131
TMethodCall * _fMethodCall
Pointer to MethodCall in case of interpreted function.
Definition: TFCNAnalyticalFunction.h:142
Int_t _nCost
the current position for the selected cost in the output list of attribute
Definition: TFCNAnalyticalFunction.h:139
TMethodCall * getMethodCall() const
Return the pointer to the TmethodCall attribut.
Definition: TFCNAnalyticalFunction.h:75
R__EXTERN URANIE::Optimizer::TFCNAnalyticalFunction * gTFCNAF
Definition: TFCNAnalyticalFunction.h:151
TString _sCost
The name of the selected cost (the number must be equal to 1)
Definition: TFCNAnalyticalFunction.h:138
double operator()(const vector< double > &par) const
Definition: TFCNAnalyticalFunction.h:81
int _noutput
Definition: TFCNAnalyticalFunction.h:135
int _ninput
Definition: TFCNAnalyticalFunction.h:132
TString _soutput
Name of the output attributes.
Definition: TFCNAnalyticalFunction.h:136
double Up() const
Definition: TFCNAnalyticalFunction.h:123
double * _dinputValue
Definition: TFCNAnalyticalFunction.h:134
double * _doutputValue
The output attribute name.
Definition: TFCNAnalyticalFunction.h:137
TFCNAnalyticalFunction()
Definition: TFCNAnalyticalFunction.h:52
void(* _fMethod)(Double_t *gin, Double_t *f)
Pointeur vers un TDS.
Definition: TFCNAnalyticalFunction.h:141
URANIE::DataServer::TDataServer * _tds
Definition: TFCNAnalyticalFunction.h:140
TString _sinput
Name of the input attributes.
Definition: TFCNAnalyticalFunction.h:133