KaliVeda  1.13/01
Heavy-Ion Analysis Toolkit
KVList.h
Go to the documentation of this file.
1 #ifndef KVLIST_H
2 #define KVLIST_H
3 
4 #include "KVSeqCollection.h"
5 #include "TList.h"
6 
27 class KVList: public KVSeqCollection {
28 
29 public:
30 
31  KVList(Bool_t owner = kTRUE);
32  virtual ~ KVList() {}
33 
34  void Sort(Bool_t order = kSortAscending)
35  {
36  ((TList*)fCollection)->Sort(order);
37  };
38 
39  ClassDef(KVList, 3)//Extended version of ROOT TList
40 };
41 #endif
bool Bool_t
const Bool_t kTRUE
#define ClassDef(name, id)
Extended TList class which owns its objects by default.
Definition: KVList.h:27
KVList(Bool_t owner=kTRUE)
Definition: KVList.cpp:10
void Sort(Bool_t order=kSortAscending)
Definition: KVList.h:34
virtual ~ KVList()
Definition: KVList.h:32
KaliVeda extensions to ROOT collection classes.
TSeqCollection * fCollection
Pointer to embedded ROOT collection.