Changeset 9428 for trunk


Ignore:
Timestamp:
04/16/09 17:02:38 (15 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r9427 r9428  
    7474     - added histogram for MNewImagePar
    7575     - added tab "Info2"
     76     - added all MHPhotonEvent to the paremeter list to allow access
     77       of the ReadEnv
    7678
    7779   * msim/MSimAbsorption.[h,cc]:
     
    9294   * msimcamera/MSimAPD.[h,cc]:
    9395     - 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
    94102
    95103
  • trunk/MagicSoft/Mars/mbase/BaseLinkDef.h

    r9268 r9428  
    9393#pragma link C++ class MParEmulated+;
    9494
     95#pragma link C++ class MParSpline+;
     96
    9597// Tool tasks
    9698#pragma link C++ class MClone+;
  • trunk/MagicSoft/Mars/mbase/Makefile

    r9268 r9428  
    3131           MLogPlugin.cc \
    3232           MLogHtml.cc \
     33           MParSpline.cc \
    3334           MParList.cc \
    3435           MParContainer.cc \
  • trunk/MagicSoft/Mars/mjobs/MJSimulation.cc

    r9425 r9428  
    430430    filled.SetNameTab("MedDev",     "Time between first and last photon hitting a detector");
    431431
    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);;
    440448
    441449    //MHPSF psf;
Note: See TracChangeset for help on using the changeset viewer.