English Français

Documentation / Developer's manual

Available modules

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Optimizer: TFCNCode.h Source File
Uranie / Optimizer  v4.10.0
/* @license-end */
TFCNCode.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 
42 #ifndef TFCNCODE_H
43 #define TFCNCODE_H
44 
45 #include "TH1.h"
46 #include "TF1.h"
47 #include "TFile.h"
48 #include "TPad.h"
49 #include "TRandom3.h"
50 #include "TVirtualFitter.h"
51 #include "TStyle.h"
52 #include "Minuit2/FCNBase.h"
53 
54 #include <vector>
55 #include <iostream>
56 
57 // URANIE
58 #include "Optimizer.h"
59 #include "TCode.h"
60 #include "TDataServer.h"
61 
62 namespace URANIE
63 {
64 namespace Optimizer
65 {
66 class TFCNCode: public ROOT::Minuit2::FCNBase
67 {
68 
69 public:
71  _ninput(0), _noutput(0), _soutput(""), _tds(NULL), _code(NULL)
72  {
73  }
75  TFCNCode(URANIE::DataServer::TDataServer *tds,
76  URANIE::Launcher::TCode *code, TString scost) :
77  _sCost(scost), _tds(tds), _code(code)
78  {
79  init();
80  }
81 
83  {
84  _dinputValue = NULL;
85  delete[] _dinputValue;
86  _doutputValue = NULL;
87  delete[] _doutputValue;
88 
89  }
90 
91  void init();
92 
93  double operator()(const vector<double> & par) const;
94 
95  double Up() const
96  {
97  return 1.;
98  }
99 
100  void clean();
101 
102 private:
103  int _ninput;
104  double * _dinputValue;
105  int _noutput;
106  TString _soutput;
107  double * _doutputValue;
108  TString _sCost;
109  Int_t _nCost;
110  URANIE::DataServer::TDataServer *_tds;
111  URANIE::Launcher::TCode *_code;
112 
113  ClassDef(URANIE::Optimizer::TFCNCode, ID_OPTIMIZER)
114  //Classe de
115 
116 };
117 } // Fin du namespace Optimizer
118 } // Fin du namespace URANIE
119 #endif
Rosenbrock&#39;s function (n=2) with first and second order derivatives.
Definition: TBestEstimate.h:57
double Up() const
Definition: TFCNCode.h:95
double * _dinputValue
Definition: TFCNCode.h:104
Definition: TFCNCode.h:66
URANIE::DataServer::TDataServer * _tds
Definition: TFCNCode.h:110
URANIE::Launcher::TCode * _code
Pointeur vers un TDS.
Definition: TFCNCode.h:111
Int_t _nCost
the current position for the selected cost in the output list of attribute
Definition: TFCNCode.h:109
double operator()(const vector< double > &par) const
TString _sCost
The name of the selected cost (the number must be equal to 1)
Definition: TFCNCode.h:108
TFCNCode()
Definition: TFCNCode.h:70
TString _soutput
Name of the output attributes.
Definition: TFCNCode.h:106
int _ninput
Definition: TFCNCode.h:103
int _noutput
Definition: TFCNCode.h:105
~TFCNCode()
Definition: TFCNCode.h:82
double * _doutputValue
The output attribute name.
Definition: TFCNCode.h:107
TFCNCode(URANIE::DataServer::TDataServer *tds, URANIE::Launcher::TCode *code, TString scost)
Constructor with a dataserver.
Definition: TFCNCode.h:75