English Français

Documentation / Manuel développeur

Modules disponibles

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / ReLauncher: TGradientEstimationRun.h Source File
Uranie / ReLauncher v4.9.0
/* @license-end */
TGradientEstimationRun.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 by
6// 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 1.3 $
22// $State$
24
32#ifndef __GRADIENT_ESTIMATION_RUN__
33#define __GRADIENT_ESTIMATION_RUN__
34
35#include <map>
36
37//ROOT
38#include "Rtypes.h"
39
40// Uranie
41#include "TShareRun.h"
42
43namespace URANIE
44{
45namespace Relauncher
46{
47
49{
50protected:
51
52public:
54 virtual ~TGradientEstimationRun(void);
55
56 virtual void put(long, std::vector<URANIE::DataServer::UEntry*>*,
57 std::vector<URANIE::DataServer::UEntry*>*, int =0);
58 virtual Bool_t readyToGet();
59 virtual int get(long &);
60
61 ClassDef(URANIE::Relauncher::TGradientEstimationRun, ID_RELAUNCHER)
62};
63
64}
65} //namespace
66
67#endif
TRun base class.
Definition TShareRun.h:104
Definition TGradientEstimationRun.h:49
virtual ~TGradientEstimationRun(void)
Definition TGradientEstimationRun.cxx:52
virtual void put(long, std::vector< URANIE::DataServer::UEntry * > *, std::vector< URANIE::DataServer::UEntry * > *, int=0)
Definition TGradientEstimationRun.cxx:57
virtual int get(long &)
Definition TGradientEstimationRun.cxx:68
virtual Bool_t readyToGet()
Definition TGradientEstimationRun.cxx:63
Definition TRun.h:50
Definition TBaseEval.cxx:44