Changeset 9024 for trunk/MagicSoft/Mars
- Timestamp:
- 07/20/08 19:16:52 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9022 r9024 80 80 - unified output when finished 81 81 - make sure the weight for the rate tab is not 0 82 - read the currents now from the camera instead of the currents tree 82 83 83 84 -
trunk/MagicSoft/Mars/NEWS
r9009 r9024 10 10 instead of the base name of the file. This makes them easier to 11 11 access from the code 12 13 * Default Monte Carlo names in MSequence do not require the _E at 14 the end anymore 15 16 * where abrrevating a sequence file with a sequence number is possible 17 also "telescope:sequence" is now accepted, e.g.: 18 star 2:2000123 --out=output 19 see the programs' help for more details. 20 21 * sequences (MSequence or MSequenceSQL) can now directly be retrieved 22 from the database. See the constructors for more details. 23 24 ;merpp 25 26 * we merpp the dc currents now also from the camera reports (they have 27 just a lower rate than the current reports, 0.1Hz instead of 1Hz) 28 29 * In the automatic analysis we omit merpping of the currents from the 30 caco files and use the lower rate camera reports from the cc files 31 instead 32 33 * merpp has been redisigned to allow merpping of the cc-reports 34 of a whole sequence. This allows to design a very simple analysis: 35 mkdir output 36 ./callisto 100776 --out=output 37 ./merpp 100776 output 38 ./star 100776 --ind=output --out=output 39 Instead of the sequence number also sequence files are accepted. 40 41 ;star 42 43 * The camera currents are now displayed with the rate of the camera 44 reports instead of the caco reports 12 45 13 46 -
trunk/MagicSoft/Mars/callisto.cc
r9017 r9024 44 44 gLog << all << endl; 45 45 gLog << "Sorry the usage is:" << endl; 46 gLog << " callisto [-c] [-y] [options] sequence.txt| number" << endl << endl;46 gLog << " callisto [-c] [-y] [options] sequence.txt|[tel:]number" << endl << endl; 47 47 gLog << " Arguments:" << endl; 48 48 gLog << " sequence.txt: ASCII file defining a sequence of runs" << endl; -
trunk/MagicSoft/Mars/mjobs/MJStar.cc
r9022 r9024 192 192 readreal.AddTree("Drive", MReadReports::kRequired); 193 193 readreal.AddTree("Starguider", MReadReports::kRequired); 194 readreal.AddTree("Currents", MReadReports::kRequired); 194 readreal.AddTree("Camera", MReadReports::kRequired); 195 readreal.AddTree("Currents"); 195 196 readreal.AddTree("CC"); 196 197 readreal.AddTree("Rec"); … … 461 462 // Initialize histogram 462 463 MHSectorVsTime histdc, histrms; 463 histdc.SetNameTime("MTimeC urrents");464 histdc.SetNameTime("MTimeCamera"); 464 465 histdc.SetTitle("Average DC currents of all pixels vs time;;<I> [nA]"); 465 466 histdc.SetMinimum(0); 466 467 histdc.SetMaximum(10); 467 histrms.SetNameTime("MTimeC urrents");468 histrms.SetNameTime("MTimeCamera"); 468 469 histrms.SetTitle("Average pedestal rms of all pixels vs time;;<\\sigma_{p}> [phe]"); 469 470 histrms.SetType(5); … … 526 527 tlist.AddToList(&fillp1, "Drive"); 527 528 tlist.AddToList(&fillp2, "Starguider"); 528 tlist.AddToList(&fillrms, "C urrents");529 tlist.AddToList(&filldc, "C urrents");529 tlist.AddToList(&fillrms, "Camera"); 530 tlist.AddToList(&filldc, "Camera"); 530 531 tlist.AddToList(&fillipr, "Trigger"); 531 532 tlist.AddToList(&filldt1, "CC"); // Old files: Receiver information in CC-Tree (Mars<=2.0) -
trunk/MagicSoft/Mars/star.cc
r9017 r9024 41 41 gLog << all << endl; 42 42 gLog << "Sorry the usage is:" << endl; 43 gLog << " star [options] sequence.txt| number" << endl << endl;43 gLog << " star [options] sequence.txt|[tel:]number" << endl << endl; 44 44 gLog << " Arguments:" << endl; 45 45 gLog << " sequence.txt: Ascii file defining a sequence of runs" << endl;
Note:
See TracChangeset
for help on using the changeset viewer.