Changeset 9428 for trunk/MagicSoft
- Timestamp:
- 04/16/09 17:02:38 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9427 r9428 74 74 - added histogram for MNewImagePar 75 75 - added tab "Info2" 76 - added all MHPhotonEvent to the paremeter list to allow access 77 of the ReadEnv 76 78 77 79 * msim/MSimAbsorption.[h,cc]: … … 92 94 * msimcamera/MSimAPD.[h,cc]: 93 95 - take the acidental rate from a container 96 97 * mbase/Makefile, mbase/BaseLinkDef.h: 98 - added MParSpline 99 100 * mbase/MParSpline.[h,cc]: 101 - added 94 102 95 103 -
trunk/MagicSoft/Mars/mbase/BaseLinkDef.h
r9268 r9428 93 93 #pragma link C++ class MParEmulated+; 94 94 95 #pragma link C++ class MParSpline+; 96 95 97 // Tool tasks 96 98 #pragma link C++ class MClone+; -
trunk/MagicSoft/Mars/mbase/Makefile
r9268 r9428 31 31 MLogPlugin.cc \ 32 32 MLogHtml.cc \ 33 MParSpline.cc \ 33 34 MParList.cc \ 34 35 MParContainer.cc \ -
trunk/MagicSoft/Mars/mjobs/MJSimulation.cc
r9425 r9428 430 430 filled.SetNameTab("MedDev", "Time between first and last photon hitting a detector"); 431 431 432 MHPhotonEvent planeG(1); // Get from MaxImpact 433 MHPhotonEvent plane0(2); // Get from MReflector 434 MHPhotonEvent plane1(2); 435 MHPhotonEvent plane2(2); 436 MHPhotonEvent plane3(2); 437 MHPhotonEvent plane4(2); 438 MHPhotonEvent planeF1(3); // Get from MGeomCam 439 MHPhotonEvent planeF2(header.IsPointRun()?4:3); // Get from MGeomCam 432 MHPhotonEvent planeG(1, "HPhotonEventGround"); // Get from MaxImpact 433 MHPhotonEvent plane0(2, "HMirrorPlane0"); // Get from MReflector 434 //MHPhotonEvent plane1(2, "HMirrorPlane1"); 435 MHPhotonEvent plane2(2, "HMirrorPlane2"); 436 MHPhotonEvent plane3(2, "HMirrorPlane3"); 437 MHPhotonEvent plane4(2, "HMirrorPlane4"); 438 MHPhotonEvent planeF1(3, "HPhotonEventCamera"); // Get from MGeomCam 439 MHPhotonEvent planeF2(header.IsPointRun()?4:3, "HPhotonEventCones"); // Get from MGeomCam 440 441 plist.AddToList(&planeG); 442 plist.AddToList(&plane0); 443 plist.AddToList(&plane2); 444 plist.AddToList(&plane3); 445 plist.AddToList(&plane4); 446 plist.AddToList(&planeF1); 447 plist.AddToList(&planeF2);; 440 448 441 449 //MHPSF psf;
Note:
See TracChangeset
for help on using the changeset viewer.