#include "Led.h" #include #include #include #include "Ring.h" #include "MString.h" ClassImp(Led); using namespace std; void Led::CalcPhi(const Ring &ring) { fPhi = TMath::ATan2(fY-ring.GetY(), fX-ring.GetX())*180/TMath::Pi(); } void Led::Print(Option_t *o) const { cout << "Led: "; cout << "x=" << MString::Format("%5.1f", fX) << "+-" << fDx << ", "; cout << "y=" << MString::Format("%5.1f", fY) << "+-" << fDy << ", "; cout << "phi=" << MString::Format("%6.1f", fPhi) << "+-" << fDphi << ", "; cout << "mag=" << fMag << endl; }