Changeset 9252 for trunk/MagicSoft/Mars/msimreflector
- Timestamp:
- 01/24/09 01:49:53 (16 years ago)
- Location:
- trunk/MagicSoft/Mars/msimreflector
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/msimreflector/MMirrorDisk.cc
r9243 r9252 31 31 ////////////////////////////////////////////////////////////////////////////// 32 32 #include "MMirrorDisk.h" 33 34 #include <stdlib.h> // atof (Ubuntu 8.10) 35 36 #include <TObjArray.h> 33 37 34 38 #include <TEllipse.h> -
trunk/MagicSoft/Mars/msimreflector/MMirrorHex.cc
r9243 r9252 31 31 ////////////////////////////////////////////////////////////////////////////// 32 32 #include "MMirrorHex.h" 33 34 #include <stdlib.h> // atof (Ubuntu 8.10) 35 36 #include <TMath.h> 37 #include <TObjArray.h> 33 38 34 39 #include <TEllipse.h> -
trunk/MagicSoft/Mars/msimreflector/MMirrorSquare.cc
r9243 r9252 32 32 #include "MMirrorSquare.h" 33 33 34 #include <stdlib.h> // atof (Ubuntu 8.10) 35 36 #include <TMath.h> 37 #include <TObjArray.h> 38 34 39 #include <TBox.h> 35 40 #include <TEllipse.h> … … 41 46 42 47 using namespace std; 48 49 Double_t MMirrorSquare::GetMaxR() const 50 { 51 return TMath::Sqrt(2.)*fSideLength; 52 } 43 53 44 54 // ------------------------------------------------------------------------ -
trunk/MagicSoft/Mars/msimreflector/MMirrorSquare.h
r9236 r9252 13 13 MMirrorSquare() : fSideLength(24.75) { } 14 14 15 Double_t GetMaxR() const { return TMath::Sqrt(2.)*fSideLength; }15 Double_t GetMaxR() const; 16 16 17 17 // This should fit with Paint() -
trunk/MagicSoft/Mars/msimreflector/MReflector.cc
r9243 r9252 33 33 #include <errno.h> 34 34 35 #include <stdlib.h> // atof (Ubuntu 8.10) 36 37 #include <TClass.h> 35 38 #include <TSystem.h> 36 39 -
trunk/MagicSoft/Mars/msimreflector/MSimReflector.cc
r9239 r9252 30 30 #include "MSimReflector.h" 31 31 32 #include <TMath.h> 32 33 #include <TRandom.h> 33 34
Note:
See TracChangeset
for help on using the changeset viewer.