// @(#)root/proof:$Id: TSlaveLite.h 25918 2008-10-22 15:00:04Z ganis $
// Author: G. Ganis Mar 2008

/*************************************************************************
 * Copyright (C) 1995-2005, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_TSlaveLite
#define ROOT_TSlaveLite


//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TSlaveLite                                                           //
//                                                                      //
// This is the version of TSlave for local worker servers.              //
// See TSlave for details.                                              //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#ifndef ROOT_TSlave
#include "TSlave.h"
#endif

class TObjString;
class TSocket;
class TSignalHandler;

class TSlaveLite : public TSlave {

friend class TProof;

private:
   Bool_t   fValid;
   TSignalHandler *fIntHandler;     //interrupt signal handler (ctrl-c)

   void  Init();

public:
   TSlaveLite(const char *ord, Int_t perf,
              const char *image, TProof *proof, Int_t stype,
              const char *workdir, const char *msd);
   virtual ~TSlaveLite();

   void   Close(Option_t *opt = "");
   void   DoError(int level, const char *location, const char *fmt,
                  va_list va) const;

   void   Print(Option_t *option="") const;
   Int_t  SetupServ(Int_t stype, const char *conffile);

   ClassDef(TSlaveLite, 0)  //PROOF lite worker server
};

#endif

Last change: Tue Dec 16 12:07:21 2008
Last generated: 2008-12-16 12:07

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.