Changeset 6503 for trunk/MagicSoft/Mars/mfileio
- Timestamp:
- 02/15/05 19:06:08 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mfileio
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mfileio/MReadMarsFile.cc
r5340 r6503 47 47 48 48 #include "MRawRunHeader.h" 49 #include "MStatusDisplay.h"50 49 51 50 #include "MMcRunHeader.hxx" … … 195 194 *fLog << warn << "Warning - You are mixing files with different run types ("; 196 195 *fLog << runtype << ", " << rawheader->GetRunType() << ")" << endl; 197 }198 199 if (fDisplay)200 {201 TString txt = GetFileName();202 txt += " @ ";203 txt += GetNumEntry()-1;204 fDisplay->SetStatusLine2(txt);205 196 } 206 197 -
trunk/MagicSoft/Mars/mfileio/MReadTree.cc
r6499 r6503 67 67 #include "MParList.h" 68 68 #include "MTaskList.h" 69 #include "MStatusDisplay.h" 69 70 70 71 #include "MLog.h" … … 279 280 *fLog << " '" << GetFileName() << "' (before event #"; 280 281 *fLog << GetNumEntry()-1 << ")" << endl; 282 283 if (fDisplay) 284 { 285 TString txt = GetFileName(); 286 txt += " @ "; 287 txt += GetNumEntry()-1; 288 fDisplay->SetStatusLine2(txt); 289 } 281 290 282 291 //
Note:
See TracChangeset
for help on using the changeset viewer.