English Français

Documentation / Manuel développeur

Modules disponibles

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Launcher: TLoadLevelerCluster.h Source File
Uranie / Launcher v4.9.0
/* @license-end */
TLoadLevelerCluster.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
45#ifndef TLOADLEVELERCLUSTER_H
46#define TLOADLEVELERCLUSTER_H
47
48#include <iostream>
49#include <sstream>
50
51using std::cout;
52using std::endl;
53using std::istringstream;
54using std::string;
55
56//ROOT
57#include "Rtypes.h"
58
59// Uranie
60#include "TCluster.h"
61
62namespace URANIE
63{
64namespace Launcher
65{
67{
68private:
69 static const char *nodeList();
70public:
71 static bool eligible();
72
73 //---------------------------------------------
77
82
83 //---------------------------------------------
87
88 virtual void init();
89 virtual void getCommandPrefix(char *, char *);
91
92 //---------------------------------------------
96 void setLog()
97 {
98 _blog = kTRUE;
99 }
100 void unsetLog()
101 {
102 _blog = kFALSE;
103 }
105 {
106 _blog = _blog ? kFALSE : kTRUE;
107 }
108 Bool_t getLog()
109 {
110 return _blog;
111 }
112 virtual void printLog(Option_t *option = "");
114
115 ClassDef(URANIE::Launcher::TLoadLevelerCluster, 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::TCluster.
Description of the class TCluster.
Definition TCluster.h:71
Bool_t _blog
Boolean to edit the log.
Definition TCluster.h:73
Description of the class TLoadLevelerCluster.
Definition TLoadLevelerCluster.h:67
TLoadLevelerCluster()
Default constructor.
virtual void init()
Construct and return the list of nodes.
void changeLog()
Definition TLoadLevelerCluster.h:104
void unsetLog()
Definition TLoadLevelerCluster.h:100
Bool_t getLog()
Definition TLoadLevelerCluster.h:108
void setLog()
Definition TLoadLevelerCluster.h:96
virtual void getCommandPrefix(char *, char *)
virtual ~TLoadLevelerCluster()
Default destructor.
virtual void printLog(Option_t *option="")
Definition TCluster.h:67