#include "TDSet.h"
#include "TError.h"
#include "TList.h"
#include "TProofQueryResult.h"
#include "TSystem.h"
ClassImp(TProofQueryResult)
TProofQueryResult::TProofQueryResult(Int_t sn, const char *opt, TList *inlist,
Long64_t ent, Long64_t fst, TDSet *dset,
const char *sel, TObject *elist)
: TQueryResult(sn, opt, inlist, ent, fst, sel)
{
fStartLog = -1;
if (fInputList && dset)
fInputList->Add(dset);
if (fInputList && elist)
fInputList->Add(elist);
}
void TProofQueryResult::SetRunning(Int_t startlog, const char *par)
{
fStatus = kRunning;
fStart.Set();
fEnd.Set(fStart.Convert()-1);
fParList = (par && (strlen(par) > 0)) ? par : "-";
fStartLog = startlog;
fLogFile->AddLine("+++");
fLogFile->AddLine(Form("+++ Start processing query # %d (log file offset: %d)",
fSeqNum, startlog));
fLogFile->AddLine("+++");
}
Last change: Tue Oct 7 11:41:42 2008
Last generated: 2008-10-07 11:41
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.