Changeset 8026 for trunk


Ignore:
Timestamp:
10/08/06 16:15:08 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8025 r8026  
    5454     - fixed a problem which could cause the change in the DrawOption
    5555       of the Center-hist to raise a seg-fault.
     56
     57   * mbase/MMath.cc, mbase/MAGIC.cc:
     58     - added the NamespaceImp macro to allow creation of the documentation
     59       by THtml (according to the source code of TMath)
    5660
    5761
  • trunk/MagicSoft/Mars/mbase/MAGIC.cc

    r8011 r8026  
    3232#include <iostream>
    3333
     34NamespaceImp(MARS);
     35
    3436using namespace std;
    3537
  • trunk/MagicSoft/Mars/mbase/MMath.cc

    r7999 r8026  
    4444#endif
    4545
     46NamespaceImp(MMath);
     47
    4648// --------------------------------------------------------------------------
    4749//
     
    501503}
    502504
     505// --------------------------------------------------------------------------
     506//
     507// Solves: x^2 + ax + b = 0;
     508// Return number of solutions returned as x1, x2
     509//
    503510Int_t MMath::SolvePol2(Double_t a, Double_t b, Double_t &x1, Double_t &x2)
    504511{
     
    534541//
    535542// Solves: x^3 + ax^2 + bx + c = 0;
    536 // Return number of the real solutions returns as z1, z2, z3
     543// Return number of the real solutions, returned as z1, z2, z3
    537544//
    538545// Algorithm adapted from http://home.att.net/~srschmitt/cubizen.heml
Note: See TracChangeset for help on using the changeset viewer.