- Timestamp:
- 07/22/08 16:28:15 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9026 r9028 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2008/07/22 Thomas Bretz 22 23 * mbase/MTime.cc: 24 - do not check the return value of mktime (this would 25 fail for dates before 1970) 26 27 * mjobs/MJCalibrateSignal.cc, mjobs/MJStar.cc: 28 - distinguish between data-runs and mc-runs for the rate plot 29 - named the tasklist for pedestal and calib extraction 30 31 * mjobs/MJMerpp.cc: 32 - precheck the accessibility of all files if a sequence 33 is processed 34 35 * mjobs/MSequence.cc: 36 - the file number is three digits 37 - the Tag for data runs is DatRuns not DataRuns 38 39 20 40 21 41 2008/07/21 Thomas Bretz -
trunk/MagicSoft/Mars/mjobs/MJMerpp.cc
r9020 r9028 240 240 return 1; 241 241 242 // FIXME: Add a check whether the file has already been merpped!!! 243 242 244 const Bool_t isreport = fPathIn.EndsWith(".rep"); 243 245 const Bool_t isdc = fPathIn.EndsWith(".txt"); … … 337 339 const TString calpath = fPathOut; 338 340 341 // PreCheck: We don't wantto start merpp if we 342 // know that an error will occur 343 for (UInt_t i=0; i<num; i++) 344 { 345 const TString name1 = fHeaderRun==0 ? reppath : seq.GetFileName(i, MSequence::kReportDat, reppath); 346 const TString name2 = seq.GetFileName(i, MSequence::kCalibrated, calpath); 347 348 // Full qualified name could not be determined or file is not 349 // accessible. For excluded files "0" is returned. 350 if (name1.IsNull() || name2.IsNull()) 351 return 6; 352 } 353 354 // Now we can safely start processing 339 355 TString rc; 340 356 for (UInt_t i=0; i<num; i++) … … 349 365 const TString name1 = fHeaderRun==0 ? reppath : seq.GetFileName(i, MSequence::kReportDat, reppath); 350 366 const TString name2 = seq.GetFileName(i, MSequence::kCalibrated, calpath); 351 352 // Full qualified name could not be determined353 // or file is not accessible354 if (name1.IsNull() || name2.IsNull())355 return 6;356 367 357 368 // FIXME: check runcallisto -
trunk/MagicSoft/Mars/mjobs/MJStar.cc
r9027 r9028 408 408 tlist2.AddToList(&clean); 409 409 tlist2.AddToList(&poscalc); 410 411 MFillH fillsp("MHSrcPosCam", "MSrcPosCam", "FillSrcPosCam"); 412 fillsp.SetNameTab("Src"); 413 tlist2.AddToList(&fillsp); 414 415 410 416 tlist2.AddToList(&hcalc); 411 417 tlist2.AddToList(&fsparks); -
trunk/MagicSoft/Mars/mjobs/MSequence.cc
r9023 r9028 493 493 494 494 if (tel>0) 495 n += Form(".%0 5d", file);495 n += Form(".%03d", file); 496 496 } 497 497 … … 1387 1387 // Should we add a check forbidding the same run in 1388 1388 // Cal/Ped/Data? What about the Exclude? 1389 /*str +=*/ PrintRuns(out, pre, "Runs: 1390 str += PrintRuns(out, pre, "CalRuns: 1391 str += PrintRuns(out, pre, "PedRuns: 1392 str += PrintRuns(out, pre, "Dat aRuns: ", fDatRuns, fDatRunsSub);1393 str += PrintRuns(out, pre, "Exclude: 1389 /*str +=*/ PrintRuns(out, pre, "Runs: ", fRuns, fRunsSub); 1390 str += PrintRuns(out, pre, "CalRuns: ", fCalRuns, fCalRunsSub); 1391 str += PrintRuns(out, pre, "PedRuns: ", fPedRuns, fPedRunsSub); 1392 str += PrintRuns(out, pre, "DatRuns: ", fDatRuns, fDatRunsSub); 1393 str += PrintRuns(out, pre, "Exclude: ", fExclRuns, fExclRunsSub); 1394 1394 } 1395 1395
Note:
See TracChangeset
for help on using the changeset viewer.