00001 // @(#)root/proof:$Id: pq2wrappers.h 33357 2010-05-04 06:56:18Z ganis $ 00002 // Author: G. Ganis, Mar 2010 00003 00004 /************************************************************************* 00005 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * 00006 * All rights reserved. * 00007 * * 00008 * For the licensing terms see $ROOTSYS/LICENSE. * 00009 * For the list of contributors see $ROOTSYS/README/CREDITS. * 00010 *************************************************************************/ 00011 00012 #ifndef PQ2_wrappers 00013 #define PQ2_wrappers 00014 00015 ////////////////////////////////////////////////////////////////////////// 00016 // // 00017 // pq2wrappers // 00018 // // 00019 // Prototypes for wrapper functions used in PQ2 // 00020 // // 00021 ////////////////////////////////////////////////////////////////////////// 00022 00023 #include "TFileCollection.h" 00024 #include "TMap.h" 00025 00026 void DataSetCache(bool clear, const char *ds); 00027 void ShowDataSets(const char *ds, const char *opt = ""); 00028 TFileCollection *GetDataSet(const char *ds, const char *server = ""); 00029 TMap *GetDataSets(const char *owner = "", const char *server = "", const char *opt = 0); 00030 Int_t RemoveDataSet(const char *dsname); 00031 Int_t VerifyDataSet(const char *dsname, const char *opt = 0, const char *redir = 0); 00032 Bool_t ExistsDataSet(const char *dsname); 00033 Int_t RegisterDataSet(const char *dsname, TFileCollection *fc, const char *opt = ""); 00034 00035 #endif