English Français

Documentation / Developer's manual

Available modules

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Reliability: TFormEval.h Source File
Uranie / Reliability v4.9.0
/* @license-end */
TFormEval.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.2 $
22// $State$
24
32#ifndef __FORM_EVAL__
33#define __FORM_EVAL__
34
35#include "Reliability.h"
36#include "TComposeEval.h"
37#include "TSimpleTransform.h"
38#include "TOptimShare.h"
39#include "TOptimFit.h"
40
41namespace URANIE
42{
43namespace Reliability
44{
45
46class TSorm;
47
48class TFormEval: public URANIE::Relauncher::TComposeEval
49{
50protected:
51 URANIE::DataServer::TAttribute *_valid;
52 URANIE::Reoptimizer::TOptimFit *_fit;
53
54public:
56 {
57 };
58
59 TFormEval(TSimpleTransform *, URANIE::Relauncher::TEval *);
60 virtual ~TFormEval();
61
62 void addConstraint(URANIE::DataServer::TAttribute *,
63 URANIE::Reoptimizer::TOptimFit *fit = NULL);
64 void addObjective(URANIE::Reoptimizer::TOptimShare *);
65 void addLapse(TSorm*);
66
67 virtual void freeze();
68
69 ClassDef(URANIE::Reliability::TFormEval, ID_RELIABILITY)
70};
71
72}
73} //namespace
74
75#endif
FORM/SORM point de conception.
Definition TFormEval.h:49
void addObjective(URANIE::Reoptimizer::TOptimShare *)
Definition TFormEval.cxx:62
void addLapse(TSorm *)
Definition TFormEval.cxx:72
void addConstraint(URANIE::DataServer::TAttribute *, URANIE::Reoptimizer::TOptimFit *fit=NULL)
Definition TFormEval.cxx:55
URANIE::DataServer::TAttribute * _valid
Definition TFormEval.h:51
URANIE::Reoptimizer::TOptimFit * _fit
Definition TFormEval.h:52
virtual void freeze()
Definition TFormEval.cxx:77
virtual ~TFormEval()
Definition TFormEval.cxx:51
Definition TSimpleTransform.h:44
Definition TSorm.h:71
Definition TFormEval.cxx:39