#ifndef HPARASCIFILEIIO_H
#define HPARASCIFILEIIO_H
using namespace std;
#include <iostream>
#include <iomanip>
#include <string.h>
#include "hpario.h"
#include "TList.h"
#include <fstream>
class HParAsciiFileIo : public HParIo {
protected:
fstream* file;
public:
HParAsciiFileIo();
~HParAsciiFileIo();
Bool_t open(const Text_t* fname,const Text_t* status="in");
void close();
Bool_t check() {
if (file) return (file->rdbuf()->is_open()==1);
else return kFALSE;
}
void print();
fstream* getFile();
ClassDef(HParAsciiFileIo,0)
};
#endif /* !HPARASCIIFILEIO_H */
Last change: Sat May 22 13:06:22 2010
Last generated: 2010-05-22 13:06
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.