Documentation / Manuel développeur
Modules disponibles
Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,  ![]()  | 
  
    Uranie / Launcher
    v4.10.0
    
   | 
 
Description of the class TOutputFile. More...
#include <TOutputFile.h>


Public Member Functions | |
Constructor and Destructor  | |
| TOutputFile (TString str) | |
| Default constructor.  More... | |
| virtual | ~TOutputFile () | 
| Default destructor.  More... | |
Add attribut to the File  | |
| virtual void | addAttribute (URANIE::DataServer::TAttribute *) | 
| Add the attribute in the file.  More... | |
| virtual void | addAttribute (TString name) | 
| Add the attribute by this name in the file.  More... | |
Computes Output  | |
| virtual Bool_t | searchOutput (forkcode *fjob, Int_t &n, Double_t *val, TList *lstOut=NULL)=0 | 
| virtual Bool_t | searchOutput (forkcode *fjob, vector< URANIE::DataServer::UEntry *> *out)=0 | 
Printing Log  | |
| virtual void | printLog (Option_t *option="") | 
  Public Member Functions inherited from URANIE::Launcher::TCodeFile | |
| TCodeFile (TString str) | |
| Default constructor.  More... | |
| virtual | ~TCodeFile () | 
| Default destructor.  More... | |
| TString | getFileName () | 
| void | setCommentCharacter (const char *str) | 
| const char * | getCommentCharacter () | 
| void | setSeparatorCharacter (const char *str) | 
| const char * | getSeparatorCharacter () | 
| void | setFieldSeparatorCharacter (const char *str) | 
| const char * | getFieldSeparatorCharacter () | 
| URANIE::DataServer::TAttribute * | getAttribute (Int_t ind) | 
| Int_t | getAttributesNumber () const | 
| Int_t | getNAttributes () const | 
| void | setVectorProperties (TString beg, TString delim, TString end) | 
| void | setStringProperties (TString beg, TString end) | 
| void | getBegEndProperties (URANIE::DataServer::TAttribute *att, TString &beg, TString &end) | 
| Bool_t | isAttribute (TString sAttributeName) | 
| Verify is the attribute given by the name is is the list of attribute.  More... | |
| void | setLog () | 
| void | unsetLog () | 
| void | changeLog () | 
| Bool_t | getLog () | 
Additional Inherited Members | |
  Public Attributes inherited from URANIE::Launcher::TCodeFile | |
| vector< URANIE::DataServer::TAttribute * > | _attributes | 
| Vector of attributes.  More... | |
| TString | _svecbeg | 
| TString | _svecend | 
| TString | _svecdel | 
| TString | _sstrbeg | 
| TString | _sstrend | 
| string used for the beginning, end and delimitation of vectors and strings  More... | |
| TString | _sFileName | 
| The name of file.  More... | |
| Bool_t | _blog | 
| Boolean for edit the log.  More... | |
| TString | _cComments | 
| The set of comment character.  More... | |
| TString | _cSeparators | 
| The set of separator character.  More... | |
| TString | _cFieldSeparator | 
| the separator to be used in between fields  More... | |
Detailed Description
Description of the class TOutputFile.
This classe enables to raise information from an ASCII file with the "Clef = valeur ;" formalism
coutMoy = 3.741194e-01 ; coutSig = 1.385948e-02 ; coutInc = 1.000000e+02 ; coutMax = 5.293728e-01 ;
Thus, to raise the 2 informations coutSig and coutMax from file coutwithkey.dat exposed above, the code of Uranie is as follows :
TOutputFile *fout = new TOutputFile("outputfile.dat");
fout->addAttribute(new TAttribute("coutSig"));
fout->addAttribute(new TAttribute("coutMax"));
- See also
 - TOutputFileRow, TOutputFileColumn, TOutputFileKey and TOutputFileDataServer
 
Constructor & Destructor Documentation
◆ TOutputFile()
| URANIE::Launcher::TOutputFile::TOutputFile | ( | TString | str | ) | 
Default constructor.
Referenced by ClassImp().
◆ ~TOutputFile()
      
  | 
  virtual | 
Default destructor.
Referenced by ClassImp().
Member Function Documentation
◆ addAttribute() [1/2]
      
  | 
  virtual | 
Add the attribute in the file.
Reimplemented from URANIE::Launcher::TCodeFile.
Referenced by ClassImp().
◆ addAttribute() [2/2]
      
  | 
  virtual | 
Add the attribute by this name in the file.
◆ printLog()
      
  | 
  virtual | 
Reimplemented from URANIE::Launcher::TCodeFile.
Reimplemented in URANIE::Launcher::TOutputFileRow, URANIE::Launcher::TOutputFileColumn, URANIE::Launcher::TOutputFileDataServer, URANIE::Launcher::TOutputFileFMU, URANIE::Launcher::TOutputFileKey, and URANIE::Launcher::TOutputFileXML.
Referenced by ClassImp().
◆ searchOutput() [1/2]
      
  | 
  pure virtual | 
◆ searchOutput() [2/2]
      
  | 
  pure virtual | 
            
            
 Public Member Functions inherited from