Changeset 9930
- Timestamp:
- 09/21/10 12:49:40 (14 years ago)
- Location:
- trunk/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/Changelog
r9929 r9930 23 23 * mjobs/MJSimulation.cc: 24 24 - correctly propagated run-number to the file-name 25 - fixed a problem with the tab-title in the ps-files 26 - fixed the histogram size for the camera (should be 5 instead 27 of 3, I hope) 28 - fixed the tab-title for the MedDev tab 29 - do not write image-files in dev-null mode 25 30 26 31 -
trunk/Mars/mjobs/MJSimulation.cc
r9929 r9930 473 473 filltp.SetNameTab("TrigPos", "TriggerPosition w.r.t the first photon"); 474 474 fillew.SetNameTab("EvtWidth", "Time between first and last photon hitting a detector"); 475 filled.SetNameTab("MedDev", " Time between first and last photonhitting a detector");475 filled.SetNameTab("MedDev", "Median deviation of arrival time of photons hitting a detector"); 476 476 477 477 MHPhotonEvent planeG(1, "HPhotonEventGround"); // Get from MaxImpact … … 481 481 MHPhotonEvent plane3(2, "HMirrorPlane3"); 482 482 MHPhotonEvent plane4(2, "HMirrorPlane4"); 483 MHPhotonEvent planeF1( 3, "HPhotonEventCamera"); // Get from MGeomCam484 MHPhotonEvent planeF2(header.IsPointRun()?4: 3, "HPhotonEventCones"); // Get from MGeomCam483 MHPhotonEvent planeF1(5, "HPhotonEventCamera"); // Get from MGeomCam 484 MHPhotonEvent planeF2(header.IsPointRun()?4:5, "HPhotonEventCones"); // Get from MGeomCam 485 485 486 486 plist.AddToList(&planeG); … … 507 507 fill0.SetNameTab("Reflector", "Photon distribution at reflector plane w/o camera shadow"); 508 508 //fill1.SetNameTab("CamShadow", "Photon distribution at reflector plane w/ camera shadow"); 509 fill2.SetNameTab("Candidates", " 'Can hit'photon distribution at reflector plane w/ camera shadow");509 fill2.SetNameTab("Candidates", "*Can hit* photon distribution at reflector plane w/ camera shadow"); 510 510 fill3.SetNameTab("Reflected", "Photon distribution after reflector projected to reflector plane"); 511 511 fill4.SetNameTab("Focal", "Photon distribution at focal plane"); … … 768 768 tasks.AddToList(&fillx3); 769 769 tasks.AddToList(&fillx4); 770 tasks.AddToList(&write4a); 770 if (!HasNullOut()) 771 tasks.AddToList(&write4a); 771 772 //tasks.AddToList(&fillx5); 772 773
Note:
See TracChangeset
for help on using the changeset viewer.