- Timestamp:
- 02/15/07 14:31:45 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8318 r8323 19 19 -*-*- END OF LINE -*-*- 20 20 21 2007/02/15 Thomas Bretz 22 23 * macros/tutorials/mirrordelay.C: 24 - added a macro plotting the delay between a spherical and a 25 parabolic mirror 26 27 * mjobs/MJStar.cc: 28 - implemented new plots for IPR vs. Time and DT 29 30 31 21 32 2007/02/13 Thomas Bretz 22 33 -
trunk/MagicSoft/Mars/NEWS
r8318 r8323 75 75 the "SparkCut" directive 76 76 77 - star: Star displays now the average individual pixel-rate (IPR) versus 78 time and the average discriminator threshold (DT) of all pixels. 79 77 80 - optim: fixed a problem with the optim-macros which was due to a bug 78 81 in the new phrase parsing -
trunk/MagicSoft/Mars/mjobs/MJStar.cc
r8311 r8323 181 181 readreal.AddTree("Currents", MReadReports::kRequired); 182 182 readreal.AddTree("CC"); 183 readreal.AddTree("Trigger"); 183 184 readreal.AddFiles(iter); 184 185 … … 428 429 MFillH fillw("MHWeather", "MTimeCC", "FillWeather"); 429 430 431 // instantiate camera histogram containers 432 MHCamEvent evtdt(0, "DT", "Discriminator Threshold;;DT [au]"); 433 434 // instantiate fill tasks 435 MFillH filldt(&evtdt, "MCameraTH", "FillDT"); 436 437 MHSectorVsTime histipr; 438 439 histipr.SetNameTime("MTimeTrigger"); 440 histipr.SetTitle("Mean of all IPR;;<IPR> [Hz]"); 441 histipr.SetMinimum(0); 442 //histipr.SetUseMedian(); 443 444 // Task to fill the histogram 445 MFillH fillipr(&histipr, "MTriggerIPR", "FillIPR"); 446 fillipr.SetNameTab("IPR"); 447 430 448 MPointingPosCalc pcalc; 431 449 … … 438 456 if (!ismc) 439 457 { 458 // initiate task list 440 459 tlist.AddToList(&fillw, "CC"); 441 460 tlist.AddToList(&fillp1, "Drive"); 442 461 tlist.AddToList(&fillp2, "Starguider"); 462 tlist.AddToList(&fillrms, "Currents"); 443 463 tlist.AddToList(&filldc, "Currents"); 444 tlist.AddToList(&fillrms, "Currents"); 464 tlist.AddToList(&fillipr, "Trigger"); 465 tlist.AddToList(&filldt, "CC"); 445 466 } 446 467 tlist.AddToList(&write);
Note:
See TracChangeset
for help on using the changeset viewer.