Changeset 8026
- Timestamp:
- 10/08/06 16:15:08 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8025 r8026 54 54 - fixed a problem which could cause the change in the DrawOption 55 55 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) 56 60 57 61 -
trunk/MagicSoft/Mars/mbase/MAGIC.cc
r8011 r8026 32 32 #include <iostream> 33 33 34 NamespaceImp(MARS); 35 34 36 using namespace std; 35 37 -
trunk/MagicSoft/Mars/mbase/MMath.cc
r7999 r8026 44 44 #endif 45 45 46 NamespaceImp(MMath); 47 46 48 // -------------------------------------------------------------------------- 47 49 // … … 501 503 } 502 504 505 // -------------------------------------------------------------------------- 506 // 507 // Solves: x^2 + ax + b = 0; 508 // Return number of solutions returned as x1, x2 509 // 503 510 Int_t MMath::SolvePol2(Double_t a, Double_t b, Double_t &x1, Double_t &x2) 504 511 { … … 534 541 // 535 542 // Solves: x^3 + ax^2 + bx + c = 0; 536 // Return number of the real solutions returnsas z1, z2, z3543 // Return number of the real solutions, returned as z1, z2, z3 537 544 // 538 545 // Algorithm adapted from http://home.att.net/~srschmitt/cubizen.heml
Note:
See TracChangeset
for help on using the changeset viewer.