Ignore:
Timestamp:
04/18/05 10:35:54 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/manalysis
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MEnergyEstimate.h

    r6932 r6949  
    2828    void SetVariables(const TArrayD &);
    2929
    30     void Print(Option_t *o="") const;
     30    void Print(Option_t *o="") const; //*MENU*
    3131
    3232    ClassDef(MEnergyEstimate, 1) // Task to estimate the energy by a rule
  • trunk/MagicSoft/Mars/manalysis/MMatrixLoop.cc

    r6924 r6949  
    5858UInt_t MMatrixLoop::GetEntries()
    5959{
    60     return fMatrix ? fMatrix->GetNumRows() : 0;
     60    if (!fMatrix)
     61        return 0;
     62
     63    return fOperationMode==kDefault ? fMatrix->GetNumRows() : (fMatrix->GetNumRows()+1)/2;
    6164}
    6265
Note: See TracChangeset for help on using the changeset viewer.