English Français

Documentation / Manuel développeur

Modules disponibles

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Launcher: TOutputFileXML.h Source File
Uranie / Launcher v4.9.0
/* @license-end */
TOutputFileXML.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
41#ifndef TOUTPUTFILEXML_H
42#define TOUTPUTFILEXML_H
43
44// ROOT
45#include "Rtypes.h"
46#include "TString.h"
47#include "TList.h"
48// URANIE
49#include "Launcher.h"
50#include "TOutputFile.h"
51
52#include <vector>
53
54namespace URANIE
55{
56namespace Launcher
57{
59{
60public:
61
62 //---------------------------------------------
66
70 TOutputFileXML(TString str);
72 virtual ~TOutputFileXML();
74
75 //---------------------------------------------
79
85 void addAttribute(URANIE::DataServer::TAttribute* att, TString xmlPath,
86 URANIE::DataServer::TAttributeFileKey::EFileType FileType);
89
94 void addAttribute(TString sname, TString xmlPath,
95 URANIE::DataServer::TAttributeFileKey::EFileType FileType);
97
98 //---------------------------------------------
102
103 Bool_t searchOutput(Int_t &n, Double_t *val, TList *lstOut = NULL);
105 Bool_t searchOutput(vector<URANIE::DataServer::UEntry*> *out);
107
108 //---------------------------------------------
112 void printLog(Option_t *option = "");
114
115 ClassDef(URANIE::Launcher::TOutputFileXML, ID_LAUNCHER)
116 //Classe de
117};
118
119} // Fin du namespace Launcher
120} // Fin du namespace URANIE
121#endif
Interface of the class URANIE::Launcher::TOutputFile.
Description of the class TOutputFileXML.
Definition TOutputFileXML.h:59
virtual ~TOutputFileXML()
Default destructor.
void printLog(Option_t *option="")
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)
Bool_t searchOutput(vector< URANIE::DataServer::UEntry * > *out)
Looking for output using a map to be able to cope with vectors/strings.
void addAttribute(TString sname, TString xmlPath, URANIE::DataServer::TAttributeFileKey::EFileType FileType)
TOutputFileXML(TString str)
Default constructor.
void addAttribute(URANIE::DataServer::TAttribute *att, TString xmlPath, URANIE::DataServer::TAttributeFileKey::EFileType FileType)
Add the attribute in the file.
Description of the class TOutputFile.
Definition TOutputFile.h:85
Definition TCluster.h:67