English Français

Documentation / Developer's manual

Available modules

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / ReLauncher: TLineResult.h Source File
Uranie / ReLauncher v4.9.0
/* @license-end */
TLineResult.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 __TLINERESULT__
33#define __TLINERESULT__
34
35//ROOT
36#include "TString.h"
37#include "TList.h"
38#include "TObjArray.h"
39#include "TRegexp.h"
40
41//Uranie
42#include "Relauncher.h"
43#include "TAttribute.h"
44#include "TCodeEval.h"
45
46namespace URANIE
47{
48namespace Relauncher
49{
50
52{
53protected:
54 static TRegexp _num;
55 TString _path;
56 TObjArray _vars;
58
59public:
60 TLineResult(const char *);
61 virtual ~TLineResult(void);
62
63 void addOutput(URANIE::DataServer::TAttribute *at);
64 void setOutputs(int, URANIE::DataServer::TAttribute *at, ...);
65 void build(TObjArray *);
66 int get(TString &, Double_t*);
67 int get(TString &work, vector<URANIE::DataServer::UEntry*> *sout);
68
69 void clearFile(TString tmpdir);
70 void setVectorProperties( TString beg, TString delim, TString end);
71 void setStringProperties( TString beg, TString end);
72
73 ClassDef(URANIE::Relauncher::TLineResult, ID_RELAUNCHER)
74
75};
76
77}
78} //namespace
79
80#endif
encapsulation dun TCode
Definition TCodeEval.h:66
Definition TLineResult.h:52
int get(TString &, Double_t *)
Definition TLineResult.cxx:91
void setVectorProperties(TString beg, TString delim, TString end)
Definition TLineResult.cxx:131
static TRegexp _num
Definition TLineResult.h:54
void build(TObjArray *)
Definition TLineResult.cxx:82
virtual ~TLineResult(void)
Definition TLineResult.cxx:55
void clearFile(TString tmpdir)
Definition TLineResult.cxx:184
TString _sstrbeg
Definition TLineResult.h:57
void setOutputs(int, URANIE::DataServer::TAttribute *at,...)
Definition TLineResult.cxx:65
TString _svecbeg
Definition TLineResult.h:57
TString _svecend
Definition TLineResult.h:57
TObjArray _vars
Definition TLineResult.h:56
TString _svecdel
Definition TLineResult.h:57
TString _sstrend
Definition TLineResult.h:57
TString _path
Definition TLineResult.h:55
void setStringProperties(TString beg, TString end)
Definition TLineResult.cxx:136
void addOutput(URANIE::DataServer::TAttribute *at)
Definition TLineResult.cxx:60
Definition TBaseEval.cxx:44