Changeset 768 for trunk/MagicSoft/Mars/mbase/MReadTree.cc
- Timestamp:
- 04/24/01 11:22:42 (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MReadTree.cc
r760 r768 63 63 // 64 64 MReadTree::MReadTree(const char *tname, const char *fname, 65 const char *name, const char *title) 65 const char *name, const char *title) : fNumEntry(0) 66 66 { 67 67 *fName = name ? name : "MReadTree"; … … 131 131 132 132 // 133 // set pointer to first event134 //135 fNumEntry = 0;136 137 //138 133 // output logging information 139 134 // … … 200 195 // check for end of file 201 196 // 202 if (fNumEntry ==fNumEntries)197 if (fNumEntry>=fNumEntries) 203 198 return kFALSE; 204 199 … … 272 267 // this function makes Process() read event number nr next 273 268 // 269 // Remark: You can use this function to set the event number from which 270 // you want to start reading. 271 // 274 272 Bool_t MReadTree::SetEventNum(UInt_t nr) 275 273 {
Note:
See TracChangeset
for help on using the changeset viewer.