KaliVeda
Toolkit for HIC analysis
KVList.h
1 #ifndef KVLIST_H
2 #define KVLIST_H
3 
4 #include "KVSeqCollection.h"
5 #include "TList.h"
6 
28 class KVList: public KVSeqCollection {
29 
30 public:
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
KVList(Bool_t owner=kTRUE)
Definition: KVList.cpp:10
void Sort(Bool_t order=kSortAscending)
Definition: KVList.h:35
virtual ~ KVList()
Definition: KVList.h:33
KaliVeda extensions to ROOT collection classes.
TSeqCollection * fCollection
Pointer to embedded ROOT collection.