Changeset 5316
- Timestamp:
- 10/26/04 11:56:08 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mjobs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mjobs/MJPedestal.cc
r5308 r5316 614 614 MRawFileRead rawread(NULL); 615 615 616 cout << "DATACHECK: " << (fDataCheck?"yes":"no") << endl;617 618 616 MDirIter iter; 619 617 if (fSequence.IsValid()) … … 623 621 if (n0==0) 624 622 { 625 *fLog << err << "ERROR - No " << type << " input files of sequence found in " << fPathData<< endl;623 *fLog << err << "ERROR - No " << type << " input files of sequence found in " << (fPathData.IsNull()?"<defaul>":fPathData.Data()) << endl; 626 624 return kFALSE; 627 625 } 628 626 if (n0!=n1) 629 627 { 630 *fLog << err << "ERROR - Number of " << type << " files found (" << n0 << ") in " << fPathData<< " doesn't match number of files in sequence (" << n1 << ")" << endl;628 *fLog << err << "ERROR - Number of " << type << " files found (" << n0 << ") in " << (fPathData.IsNull()?"<defaul>":fPathData.Data()) << " doesn't match number of files in sequence (" << n1 << ")" << endl; 631 629 return kFALSE; 632 630 } -
trunk/MagicSoft/Mars/mjobs/MSequence.cc
r5310 r5316 146 146 } 147 147 148 cout << d << endl;149 150 148 for (int i=0; i<arr.GetSize(); i++) 151 149 {
Note:
See TracChangeset
for help on using the changeset viewer.