English Français

Documentation / Developer's manual

Available modules

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Launcher: TOutputFileKey.h Source File
Uranie / Launcher v4.9.0
/* @license-end */
TOutputFileKey.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
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
61#ifndef TOUTPUTFILEKEY_H
62#define TOUTPUTFILEKEY_H
63
64// ROOT
65#include "Rtypes.h"
66#include "TString.h"
67#include "TList.h"
68// URANIE
69#include "Launcher.h"
70#include "TOutputFile.h"
71
72#include <vector>
73
74namespace URANIE
75{
76namespace Launcher
77{
79{
80public:
81 //---------------------------------------------
85
86 TOutputFileKey(TString str);
88 virtual ~TOutputFileKey();
90
91 //---------------------------------------------
95
100 void addAttribute(URANIE::DataServer::TAttribute* att, TString skey = "");
102
106 void addAttribute(TString sname, TString skey = "");
108
109 //---------------------------------------------
113
114 Bool_t searchOutput(Int_t &n, Double_t *val, TList *lstOut = NULL);
116 Bool_t searchOutput(vector<URANIE::DataServer::UEntry*> *out);
118
119 //---------------------------------------------
123 void printLog(Option_t *option = "");
125
126 ClassDef(URANIE::Launcher::TOutputFileKey, ID_LAUNCHER)
127 //Classe de
128};
129
130} // Fin du namespace Launcher
131} // Fin du namespace URANIE
132#endif
Interface of the class URANIE::Launcher::TOutputFile.
Description of the class TOutputFileKey.
Definition TOutputFileKey.h:79
void addAttribute(URANIE::DataServer::TAttribute *att, TString skey="")
Add the attribute in the file with the key if defined.
Bool_t searchOutput(vector< URANIE::DataServer::UEntry * > *out)
Looking for output using a map to be able to cope with vectors/strings.
Bool_t searchOutput(Int_t &n, Double_t *val, TList *lstOut=NULL)
Looking for output usindouble only and transmitting matrix (not used by launcher anymore)
virtual ~TOutputFileKey()
Default destructor.
void printLog(Option_t *option="")
void addAttribute(TString sname, TString skey="")
Add the attribute by this name in the file.
TOutputFileKey(TString str)
Default constructor.
Description of the class TOutputFile.
Definition TOutputFile.h:85
Definition TCluster.h:67