Revision a53e84a8a3e284d074423d91c176e5bc5b824c23 authored by Lorenzo Moneta on 05 July 2006, 16:05:35 UTC, committed by Lorenzo Moneta on 05 July 2006, 16:05:35 UTC

git-svn-id: http://root.cern.ch/svn/root/trunk@15708 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent 0ff9f63
Raw File
TAlienJob.h
// @(#)root/alien:$Name:  $:$Id: TAlienJob.h,v 1.4 2004/10/28 08:58:54 jgrosseo Exp $
// Author: Jan Fiete Grosse-Oetringhaus  06/10/2004

/*************************************************************************
 * Copyright (C) 1995-2004, 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_TAlienJob
#define ROOT_TAlienJob

//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TAlienJob                                                            //
//                                                                      //
// Alien implentation of TGridJob                                       //
//                                                                      //
// Related classes are TAlienJobStatus.                                 //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#ifndef ROOT_TGridJob
#include "TGridJob.h"
#endif


class TAlienJob : public TGridJob {

public:
   TAlienJob(GridJobID_t jobID) : TGridJob(jobID) { }
   virtual ~TAlienJob() { }

   virtual TGridJobStatus *GetJobStatus() const;

   ClassDef(TAlienJob,1)  // Alien implementation of TGridJob
};

#endif
back to top