Logo ROOT   6.12/07
Reference Guide
TProofBenchDataSet.h
Go to the documentation of this file.
1 // @(#)root/proof:$Id$
2 // Author: Sangsu Ryu 22/06/2010
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2005, 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_TProofBenchDataSet
13 #define ROOT_TProofBenchDataSet
14 
15 //////////////////////////////////////////////////////////////////////////
16 // //
17 // TProofBenchDataSet //
18 // //
19 // Handle operations on datasets used by ProofBench //
20 // //
21 //////////////////////////////////////////////////////////////////////////
22 
23 #include "TObject.h"
24 
25 class TProof;
26 
27 class TProofBenchDataSet: public TObject {
28 
29 private:
30 
31 protected:
32  TProof* fProof; //proof
33 
34  Int_t Handle(const char *dset, TObject *type);
35 
36 public:
37 
38  TProofBenchDataSet(TProof *proof = 0);
39  virtual ~TProofBenchDataSet() { }
40 
41  Bool_t IsProof(TProof *p) { return (p == fProof) ? kTRUE : kFALSE; }
42 
43  Int_t CopyFiles(const char *dset, const char *destdir);
44  Int_t ReleaseCache(const char *dset);
45  Int_t RemoveFiles(const char *dset);
46 
47  ClassDef(TProofBenchDataSet,0) //Handle operations on datasets
48 };
49 
50 #endif
Int_t CopyFiles(const char *dset, const char *destdir)
Copy the files of dataset 'dset' to another directory Return 0 on success, -1 on error.
Bool_t IsProof(TProof *p)
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
Handle operations on datasets used by ProofBench.
Int_t RemoveFiles(const char *dset)
Physically remove the dataset 'dset', i.e.
#define ClassDef(name, id)
Definition: Rtypes.h:320
TProofBenchDataSet(TProof *proof=0)
Constructor.
Int_t ReleaseCache(const char *dset)
Release memory cache for dataset 'dset' Return 0 on success, -1 on error.
const Bool_t kFALSE
Definition: RtypesCore.h:88
Int_t Handle(const char *dset, TObject *type)
Physically remove the dataset 'dset', i.e.
int type
Definition: TGX11.cxx:120
This class controls a Parallel ROOT Facility, PROOF, cluster.
Definition: TProof.h:316
Mother of all ROOT objects.
Definition: TObject.h:37
const Bool_t kTRUE
Definition: RtypesCore.h:87