12#ifndef ROOT_TTreeResult
13#define ROOT_TTreeResult
#define ClassDefOverride(name, id)
Implement some of the functionality of the class TTree requiring access to extra libraries (Histogram...
Class defining interface to a TTree query result with the same interface as for SQL databases.
void Close(Option_t *option="") override
Close query result.
Int_t fColumnCount
number of columns in result
~TTreeResult() override
Cleanup result object.
TTreeResult()
Create a query result object.
TObjArray * GetRows() const
TSQLRow * Next() override
Get next query result row.
Int_t fNextRow
row iterator
const char * GetFieldName(Int_t field) override
Get name of specified field.
Int_t GetFieldCount() override
Get number of fields in result.
TString * fFields
[fColumnCount] array containing field strings
Bool_t IsValid(Int_t field)
Check if result set is open and field index within range.
void AddRow(TSQLRow *row)
Adopt a row to result set.
TObjArray * fResult
query result (TTreeRow objects)
void AddField(Int_t field, const char *fieldname)
Add field name to result set.