#ifndef HDSTUTILITIES_H
#define HDSTUTILITIES_H
#include "TObject.h"
class HDstUtilities : public TObject
{
private:
static const Int_t MAX_LINE_LENGTH = 1024;
private:
HDstUtilities() {};
public:
~HDstUtilities() {};
static Bool_t readCmdLineArgsFromFile(
const Char_t* filename, Int_t* argc, Char_t*** argv);
static void str2CmdLineArgs(const Char_t* input, Int_t* argc, Char_t*** argv);
static void freeCmdLineArgs(Int_t argc, Char_t** argv);
static Char_t* extractArg(Int_t* argc, Char_t*** argv, const Char_t* arg);
static TString GetFileStem(const TString& dir, const TString& file);
ClassDef( HDstUtilities, 0 )
};
#endif // HDSTUTILITIES_H
Last change: Sat May 22 12:55:00 2010
Last generated: 2010-05-22 12:55
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.