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 | cout << "Led: ";
|
---|
23 | cout << "x=" << MString::Format("%5.1f", fX) << "+-" << fDx << ", ";
|
---|
24 | cout << "y=" << MString::Format("%5.1f", fY) << "+-" << fDy << ", ";
|
---|
25 | cout << "phi=" << MString::Format("%6.1f", fPhi) << "+-" << fDphi << ", ";
|
---|
26 | cout << "mag=" << fMag << endl;
|
---|
27 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.