source: trunk/Mars/msimreflector/MMirrorHex.h@ 9912

Last change on this file since 9912 was 9573, checked in by tbretz, 14 years ago
*** empty log message ***
File size: 868 bytes
Line 
1#ifndef MARS_MMirrorHex
2#define MARS_MMirrorHex
3
4#ifndef MARS_MMirror
5#include "MMirror.h"
6#endif
7
8class MMirrorHex : public MMirror
9{
10private:
11 const static Double_t fgCos30;
12 const static Double_t fgCos60;
13 const static Double_t fgSin60;
14
15 Double_t fD; // half diameter D or better distance between opposite sides
16 Double_t fMaxR;
17
18 void SetD(Double_t d) { fD=d/2; fMaxR=fD/fgCos30; }
19
20public:
21 MMirrorHex() { SetD(24.75); }
22
23 // MMirror
24 Double_t GetMaxR() const { return fMaxR; }
25 Double_t GetA() const;
26 Double_t GetD() const { return fD; }
27
28 Bool_t CanHit(const MQuaternion &p) const;
29 Bool_t HasHit(const MQuaternion &p) const;
30
31 Int_t ReadM(const TObjArray &tok);
32
33 // TObject
34 void Paint(Option_t *);
35 void Print(Option_t *) const;
36
37 ClassDef(MMirrorHex, 1) // A spherical hexagon type mirror
38};
39
40#endif
Note: See TracBrowser for help on using the repository browser.