source: trunk/Mars/msimreflector/MFresnelLens.h@ 19594

Last change on this file since 19594 was 19593, checked in by tbretz, 6 years ago
Renamed MLens to MFresnelLens
File size: 612 bytes
Line 
1#ifndef MARS_MLens
2#define MARS_MLens
3
4#ifndef MARS_MOptics
5#include "MOptics.h"
6#endif
7
8class MQuaternion;
9
10class MLens : public MOptics
11{
12private:
13 Double_t fMaxR;
14
15 void InitMaxR();
16
17public:
18 MLens(const char *name=NULL, const char *title=NULL);
19
20 Double_t GetMaxR() const { return fMaxR; }
21 Double_t GetA() const;
22
23 virtual Bool_t CanHit(const MQuaternion &p) const;
24
25 Int_t ExecuteOptics(MQuaternion &p, MQuaternion &u, const Short_t &) const;
26
27 Bool_t IsValid() const { return kTRUE; }
28
29 ClassDef(MLens, 1) // Parameter container storing the description of a lens
30};
31
32#endif
Note: See TracBrowser for help on using the repository browser.