Changeset 9931 for trunk/Mars


Ignore:
Timestamp:
09/22/10 09:12:19 (14 years ago)
Author:
tbretz
Message:
Some small fixes in MJSimulation
Location:
trunk/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/Changelog

    r9930 r9931  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20
     21 2010/09/22 Thomas Bretz
     22
     23   * mjobs/MJSimulation.cc:
     24     - slight improvement of debug output
     25     - call SetAllowEmpty for the three ContEmpty filters
     26     - changed binning of camera histograms
     27
     28
    2029
    2130 2010/09/21 Thomas Bretz
  • trunk/Mars/mjobs/MJSimulation.cc

    r9930 r9931  
    266266        *fLog << fSequence.GetFileName() << endl;
    267267    else
    268         *fLog << args.GetNumArguments() << "-files" << endl;
     268        *fLog << "Input: " << args.GetNumArguments() << "-files" << endl;
    269269    *fLog << endl;
    270270
     
    408408    MContinue cont2("MPhotonEvent.GetNumPhotons<1", "ContEmpty2");
    409409    MContinue cont3("MPhotonEvent.GetNumPhotons<2", "ContEmpty3");
     410    cont1.SetAllowEmpty();
     411    cont2.SetAllowEmpty();
     412    cont3.SetAllowEmpty();
    410413
    411414    // -------------------------------------------------------------------
     
    481484    MHPhotonEvent plane3(2, "HMirrorPlane3");
    482485    MHPhotonEvent plane4(2, "HMirrorPlane4");
    483     MHPhotonEvent planeF1(5, "HPhotonEventCamera");   // Get from MGeomCam
    484     MHPhotonEvent planeF2(header.IsPointRun()?4:5, "HPhotonEventCones"); // Get from MGeomCam
     486    MHPhotonEvent planeF1(6, "HPhotonEventCamera");   // Get from MGeomCam
     487    MHPhotonEvent planeF2(header.IsPointRun()?4:6, "HPhotonEventCones"); // Get from MGeomCam
    485488
    486489    plist.AddToList(&planeG);
Note: See TracChangeset for help on using the changeset viewer.