KaliVeda
Toolkit for HIC analysis
Loading...
Searching...
No Matches
KVList.h
1#ifndef KVLIST_H
2#define KVLIST_H
3
4#include "KVSeqCollection.h"
5#include "TList.h"
6
28class KVList: public KVSeqCollection {
29
30public:
31
32 KVList(Bool_t owner = kTRUE);
33 virtual ~ KVList() {}
34
35 void Sort(Bool_t order = kSortAscending)
36 {
37 ((TList*)fCollection)->Sort(order);
38 };
39
40 ClassDef(KVList, 3)//Extended version of ROOT TList
41};
42#endif
bool Bool_t
constexpr Bool_t kTRUE
#define ClassDef(name, id)
Extended TList class which owns its objects by default.
Definition KVList.h:28
void Sort(Bool_t order=kSortAscending)
Definition KVList.h:35
KaliVeda extensions to ROOT collection classes.
TSeqCollection * fCollection
Pointer to embedded ROOT collection.