1 | #ifndef MARS_MEvtLoop
|
---|
2 | #define MARS_MEvtLoop
|
---|
3 |
|
---|
4 | /////////////////////////////////////////////////////////////////////////////
|
---|
5 | // //
|
---|
6 | // MEvtLoop //
|
---|
7 | // //
|
---|
8 | // Class to execute the tasks in a tasklist //
|
---|
9 | // //
|
---|
10 | /////////////////////////////////////////////////////////////////////////////
|
---|
11 |
|
---|
12 | #ifndef MARS_MParContainer
|
---|
13 | #include "MParContainer.h"
|
---|
14 | #endif
|
---|
15 |
|
---|
16 | class MTask;
|
---|
17 | class MParList;
|
---|
18 | class MTaskList;
|
---|
19 | class TGProgressBar;
|
---|
20 | #ifdef __MARS__
|
---|
21 | class MProgressBar;
|
---|
22 | #endif
|
---|
23 |
|
---|
24 | class MEvtLoop : public MParContainer
|
---|
25 | {
|
---|
26 | private:
|
---|
27 | MParList *fParList;
|
---|
28 | MTaskList *fTaskList; //!
|
---|
29 |
|
---|
30 | TGProgressBar *fProgress; //!
|
---|
31 |
|
---|
32 | ULong_t fNumEvents; //!
|
---|
33 |
|
---|
34 | enum { kIsOwner = BIT(14), kPrivateDisplay = BIT(15) };
|
---|
35 |
|
---|
36 | Bool_t HasDuplicateNames(const TString txt) const;
|
---|
37 | Bool_t HasDuplicateNames(TObjArray &arr, const TString txt) const;
|
---|
38 |
|
---|
39 | void StreamPrimitive(ofstream &out) const;
|
---|
40 |
|
---|
41 | Bool_t ProcessGuiEvents(Int_t num);
|
---|
42 | static UInt_t GetMemoryUsage();
|
---|
43 |
|
---|
44 | public:
|
---|
45 | MEvtLoop(const char *name="Evtloop");
|
---|
46 | virtual ~MEvtLoop();
|
---|
47 |
|
---|
48 | void SetParList(MParList *p);
|
---|
49 | MParList *GetParList() const { return fParList; }
|
---|
50 | MTaskList *GetTaskList() const { return fTaskList; }
|
---|
51 |
|
---|
52 | MTask *FindTask(const char *name) const;
|
---|
53 | MTask *FindTask(const MTask *obj) const;
|
---|
54 |
|
---|
55 | MStatusDisplay *GetDisplay() { return fDisplay; }
|
---|
56 | void SetDisplay(MStatusDisplay *d);
|
---|
57 | void SetPrivateDisplay(Bool_t b=kTRUE) { b ? SetBit(kPrivateDisplay) : ResetBit(kPrivateDisplay); } // Prevent status display from being cascaded in PreProcess
|
---|
58 |
|
---|
59 | void SetOwner(Bool_t enable=kTRUE);
|
---|
60 |
|
---|
61 | void SetProgressBar(TGProgressBar *bar);
|
---|
62 | #ifdef __MARS__
|
---|
63 | void SetProgressBar(MProgressBar *bar);
|
---|
64 | #endif
|
---|
65 |
|
---|
66 | Bool_t PreProcess(const char *tlist="MTaskList");
|
---|
67 | Int_t Process(UInt_t maxcnt);
|
---|
68 | Bool_t PostProcess() const;
|
---|
69 |
|
---|
70 | Bool_t Eventloop(UInt_t maxcnt=0, const char *tlist="MTaskList");
|
---|
71 |
|
---|
72 | void MakeMacro(const char *filename="evtloop.C");
|
---|
73 |
|
---|
74 | void SavePrimitive(ofstream &out, Option_t *o="");
|
---|
75 |
|
---|
76 | Int_t Read(const char *name="Evtloop");
|
---|
77 | Int_t Write(const char *name="Evtloop", Int_t option=0, Int_t bufsize=0) const;
|
---|
78 | Int_t Write(const char *name="Evtloop", Int_t option=0, Int_t bufsize=0)
|
---|
79 | {
|
---|
80 | return const_cast<MEvtLoop*>(this)->Write(name, option, bufsize);
|
---|
81 | }
|
---|
82 |
|
---|
83 | void Print(Option_t *opt="") const;
|
---|
84 |
|
---|
85 | Int_t ReadEnv(const TEnv &env, TString prefix="", Bool_t print=kFALSE);
|
---|
86 | Bool_t WriteEnv(TEnv &env, TString prefix="", Bool_t print=kFALSE) const;
|
---|
87 |
|
---|
88 | Bool_t ReadEnv(const char *config, Bool_t print=kFALSE);
|
---|
89 |
|
---|
90 | void RecursiveRemove(TObject *obj);
|
---|
91 |
|
---|
92 | ClassDef(MEvtLoop, 1) // Class to execute the tasks in a tasklist
|
---|
93 | };
|
---|
94 |
|
---|
95 | #endif
|
---|