/usr/include/root/TProofQueryResult.h is in libroot-proof-dev 5.34.30-0ubuntu8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | // @(#)root/proof:$Id$
// Author: G Ganis Aug 2005
/*************************************************************************
* 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_TProofQueryResult
#define ROOT_TProofQueryResult
//////////////////////////////////////////////////////////////////////////
// //
// TProofQueryResult //
// //
// TQueryResult version adapted to PROOF neeeds. //
// //
//////////////////////////////////////////////////////////////////////////
#ifndef ROOT_TQueryResult
#include "TQueryResult.h"
#endif
class TDSet;
class TProofQueryResult : public TQueryResult {
friend class TProofLite;
friend class TProofServ;
friend class TQueryResultManager;
private:
Int_t fStartLog; //log file offset at start
TProofQueryResult(Int_t seqnum, const char *opt, TList *inlist,
Long64_t entries, Long64_t first, TDSet *dset,
const char *selec, TObject *elist = 0);
void RecordEnd(EQueryStatus status, TList *outlist = 0)
{ TQueryResult::RecordEnd(status, outlist); }
void SetFinalized() { TQueryResult::SetFinalized(); }
void SetResultFile(const char *rf) { fResultFile = rf; }
void SetRunning(Int_t startlog, const char *par, Int_t nwrks);
public:
TProofQueryResult() : TQueryResult(), fStartLog(-1) { }
virtual ~TProofQueryResult() { }
ClassDef(TProofQueryResult,1) //Class describing a PROOF query
};
#endif
|