Last change
on this file since 0b8551f was 341014c, checked in by Pavel Demin <pavel-demin@…>, 6 years ago |
apply .clang-format to all .h, .cc and .cpp files
|
-
Property mode
set to
100644
|
File size:
444 bytes
|
Rev | Line | |
---|
[d7d2da3] | 1 | #ifndef ExRootProgressBar_h
|
---|
| 2 | #define ExRootProgressBar_h
|
---|
| 3 |
|
---|
| 4 | #include "Rtypes.h"
|
---|
| 5 |
|
---|
| 6 | class ExRootProgressBar
|
---|
| 7 | {
|
---|
| 8 | public:
|
---|
| 9 | ExRootProgressBar(Long64_t entries, Int_t width = 64);
|
---|
| 10 | ~ExRootProgressBar();
|
---|
| 11 |
|
---|
| 12 | void Update(Long64_t entry, Long64_t eventCounter = 0, Bool_t last = kFALSE);
|
---|
| 13 | void Finish();
|
---|
| 14 |
|
---|
| 15 | private:
|
---|
| 16 | Long64_t fEntries, fEventCounter;
|
---|
| 17 | Int_t fWidth;
|
---|
| 18 |
|
---|
| 19 | ULong64_t fTime;
|
---|
| 20 | Int_t fHashes;
|
---|
| 21 |
|
---|
| 22 | char *fBar; //!
|
---|
| 23 | };
|
---|
| 24 |
|
---|
| 25 | #endif /* ExRootProgressBar */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.