| Line |  | 
|---|
| 1 | #include "Led.h" | 
|---|
| 2 |  | 
|---|
| 3 | #include <iostream> | 
|---|
| 4 |  | 
|---|
| 5 | #include <TROOT.h> | 
|---|
| 6 | #include <TMath.h> | 
|---|
| 7 |  | 
|---|
| 8 | #include "Ring.h" | 
|---|
| 9 | #include "MString.h" | 
|---|
| 10 |  | 
|---|
| 11 | ClassImp(Led); | 
|---|
| 12 |  | 
|---|
| 13 | using namespace std; | 
|---|
| 14 |  | 
|---|
| 15 | void Led::CalcPhi(const Ring &ring) | 
|---|
| 16 | { | 
|---|
| 17 | fPhi = TMath::ATan2(fY-ring.GetY(), fX-ring.GetX())*180/TMath::Pi(); | 
|---|
| 18 | } | 
|---|
| 19 |  | 
|---|
| 20 | void Led::Print(Option_t *o) const | 
|---|
| 21 | { | 
|---|
| 22 | MString str; | 
|---|
| 23 | cout << "Led: "; | 
|---|
| 24 | cout << "x="   << str.Print("%5.1f", fX)   << "+-" << fDx   << ", "; | 
|---|
| 25 | cout << "y="   << str.Print("%5.1f", fY)   << "+-" << fDy   << ", "; | 
|---|
| 26 | cout << "phi=" << str.Print("%6.1f", fPhi) << "+-" << fDphi << ", "; | 
|---|
| 27 | cout << "mag=" << fMag << endl; | 
|---|
| 28 | } | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.