Last change
on this file since 606 was 590, checked in by Pavel Demin, 12 years ago |
adapt to the new TTime interface
|
File size:
380 bytes
|
Rev | Line | |
---|
[3] | 1 | #ifndef ExRootProgressBar_h
|
---|
| 2 | #define ExRootProgressBar_h
|
---|
| 3 |
|
---|
| 4 | #include "Rtypes.h"
|
---|
| 5 |
|
---|
| 6 | class ExRootProgressBar
|
---|
| 7 | {
|
---|
| 8 | public:
|
---|
| 9 |
|
---|
| 10 | ExRootProgressBar(Long64_t entries, Int_t width = 25);
|
---|
| 11 | ~ExRootProgressBar();
|
---|
| 12 |
|
---|
| 13 | void Update(Long64_t entry);
|
---|
| 14 | void Finish();
|
---|
| 15 |
|
---|
| 16 | private:
|
---|
| 17 |
|
---|
| 18 | Long64_t fEntries;
|
---|
| 19 | Int_t fWidth;
|
---|
| 20 |
|
---|
[590] | 21 | ULong64_t fTime;
|
---|
[3] | 22 | Int_t fHashes;
|
---|
| 23 |
|
---|
| 24 | char *fBar;
|
---|
| 25 |
|
---|
| 26 | };
|
---|
| 27 |
|
---|
| 28 | #endif /* ExRootProgressBar */
|
---|
| 29 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.