Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TProofCondor.h
Go to the documentation of this file.
1 // @(#)root/proof:$Id$
2 // Author: Fons Rademakers 13/02/97
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TProofCondor
13 #define ROOT_TProofCondor
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TProofCondor //
19 // //
20 // This class controls a Parallel ROOT Facility, PROOF, cluster. //
21 // It fires the slave servers, it keeps track of how many slaves are //
22 // running, it keeps track of the slaves running status, it broadcasts //
23 // messages to all slaves, it collects results, etc. //
24 // //
25 //////////////////////////////////////////////////////////////////////////
26 
27 #include "TProof.h"
28 #include "TString.h"
29 
30 class TCondor;
31 class TTimer;
32 
33 class TProofCondor : public TProof {
34 
35 friend class TCondor;
36 
37 private:
38  TCondor *fCondor; //proxy for our Condor pool
39  TTimer *fTimer; //timer for delayed Condor COD suspend
40 
41 protected:
42  Bool_t StartSlaves(Bool_t);
43  TString GetJobAd();
44 
45 public:
46  TProofCondor(const char *masterurl, const char *conffile = kPROOF_ConfFile,
47  const char *confdir = kPROOF_ConfDir, Int_t loglevel = 0,
48  const char *alias = 0, TProofMgr *mgr = 0);
49  virtual ~TProofCondor();
50  virtual void SetActive() { TProof::SetActive(); }
51  virtual void SetActive(Bool_t active);
52 
53  ClassDef(TProofCondor,0) //PROOF control class for slaves allocated by condor
54 };
55 
56 #endif