source: trunk/MagicSoft/Cosy/caos/Ring.h@ 7297

Last change on this file since 7297 was 7297, checked in by tbretz, 19 years ago
*** empty log message ***
File size: 919 bytes
Line 
1#ifndef COSY_Ring
2#define COSY_Ring
3
4#ifndef ROOT_TObject
5#include <TObject.h>
6#endif
7
8class Leds;
9class Rings;
10
11class Ring : public TObject
12{
13private:
14 Double_t fX;
15 Double_t fY;
16 Double_t fR;
17 Double_t fPhi;
18
19 Double_t fDx;
20 Double_t fDy;
21 Double_t fDr;
22 Double_t fDphi;
23
24 Double_t fMag;
25
26 Double_t sqr(Double_t x) { return x*x; }
27
28 void Swap(int &m, int &n)
29 {
30 int dummy = m;
31 m = n;
32 n = dummy;
33 }
34
35public:
36 Ring(Double_t x=0, Double_t y=0);
37
38 Double_t GetX() const { return fX; }
39 Double_t GetY() const { return fY; }
40 Double_t GetR() const { return fR; }
41 Double_t GetPhi() const { return fPhi; }
42
43 Double_t GetMag() const { return fMag; }
44
45 bool CalcCenter(const Leds &leds, Int_t i, Int_t j, Int_t k);
46 void InterpolCenters(const Rings &rings);
47
48 void Print(Option_t *o=NULL) const;
49
50 ClassDef(Ring, 1)
51};
52
53#endif
Note: See TracBrowser for help on using the repository browser.