Line | |
---|
1 | #ifndef MPARLIST_H
|
---|
2 | #define MPARLIST_H
|
---|
3 |
|
---|
4 | /////////////////////////////////////////////////////////////////////////////
|
---|
5 | // //
|
---|
6 | // MParList //
|
---|
7 | // //
|
---|
8 | // List of parameter containers (MParContainer) //
|
---|
9 | // //
|
---|
10 | /////////////////////////////////////////////////////////////////////////////
|
---|
11 |
|
---|
12 | #ifndef MAGIC_H
|
---|
13 | #include "MAGIC.h"
|
---|
14 | #endif
|
---|
15 |
|
---|
16 | #ifndef ROOT_TOrdCollection
|
---|
17 | #include "TOrdCollection.h"
|
---|
18 | #endif
|
---|
19 | #ifndef MPARCONTAINER_H
|
---|
20 | #include "MParContainer.h"
|
---|
21 | #endif
|
---|
22 |
|
---|
23 | class MLog;
|
---|
24 |
|
---|
25 | class MParList : public MParContainer
|
---|
26 | {
|
---|
27 | private:
|
---|
28 | TOrdCollection fContainer; // Collection of Parameter and Data Containers
|
---|
29 |
|
---|
30 | public:
|
---|
31 | MParList();
|
---|
32 | MParList(MParList &ts);
|
---|
33 |
|
---|
34 | ~MParList()
|
---|
35 | {
|
---|
36 | }
|
---|
37 |
|
---|
38 | Bool_t AddToList(MParContainer *obj, MParContainer *where = NULL);
|
---|
39 |
|
---|
40 | void SetLogStream(MLog *log);
|
---|
41 |
|
---|
42 | TObject *FindObject(const char *name) const;
|
---|
43 | MParContainer *FindCreateObj(const char *name);
|
---|
44 |
|
---|
45 | void Print(Option_t *t = NULL);
|
---|
46 |
|
---|
47 | ClassDef(MParList, 1) //list of parameter containers (MParContainer)
|
---|
48 | };
|
---|
49 |
|
---|
50 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.