Index: /trunk/Mars/msimreflector/MFresnelLens.cc
===================================================================
--- /trunk/Mars/msimreflector/MFresnelLens.cc	(revision 19594)
+++ /trunk/Mars/msimreflector/MFresnelLens.cc	(revision 19595)
@@ -25,8 +25,8 @@
 //////////////////////////////////////////////////////////////////////////////
 //
-//  MLens
+//  MFresnelLens
 //
 //////////////////////////////////////////////////////////////////////////////
-#include "MLens.h"
+#include "MFresnelLens.h"
 
 #include <fstream>
@@ -38,5 +38,5 @@
 #include "MLogManip.h"
 
-ClassImp(MLens);
+ClassImp(MFresnelLens);
 
 using namespace std;
@@ -46,7 +46,7 @@
 // Default constructor
 //
-MLens::MLens(const char *name, const char *title)
-{
-    fName  = name  ? name  : "MLens";
+MFresnelLens::MFresnelLens(const char *name, const char *title)
+{
+    fName  = name  ? name  : "MFresnelLens";
     fTitle = title ? title : "Parameter container storing a collection of several mirrors (reflector)";
 
@@ -59,5 +59,5 @@
 // with any call.
 //
-Double_t MLens::GetA() const
+Double_t MFresnelLens::GetA() const
 {
     return fMaxR*fMaxR*TMath::Pi();
@@ -68,5 +68,5 @@
 // Check with a rough estimate whether a photon can hit the reflector.
 //
-Bool_t MLens::CanHit(const MQuaternion &p) const
+Bool_t MFresnelLens::CanHit(const MQuaternion &p) const
 {
     // p is given in the reflectory coordinate frame. This is meant as a
@@ -200,5 +200,5 @@
 }
 
-Int_t MLens::ExecuteOptics(MQuaternion &p, MQuaternion &u, const Short_t &wavelength) const
+Int_t MFresnelLens::ExecuteOptics(MQuaternion &p, MQuaternion &u, const Short_t &wavelength) const
 {
     const double F = 50;    // [mm] focal length
Index: /trunk/Mars/msimreflector/MFresnelLens.h
===================================================================
--- /trunk/Mars/msimreflector/MFresnelLens.h	(revision 19594)
+++ /trunk/Mars/msimreflector/MFresnelLens.h	(revision 19595)
@@ -1,4 +1,4 @@
-#ifndef MARS_MLens
-#define MARS_MLens
+#ifndef MARS_MFresnelLens
+#define MARS_MFresnelLens
 
 #ifndef MARS_MOptics
@@ -8,5 +8,5 @@
 class MQuaternion;
 
-class MLens : public MOptics
+class MFresnelLens : public MOptics
 {
 private:
@@ -16,5 +16,5 @@
 
 public:
-    MLens(const char *name=NULL, const char *title=NULL);
+    MFresnelLens(const char *name=NULL, const char *title=NULL);
 
     Double_t GetMaxR() const { return fMaxR; }
@@ -27,5 +27,5 @@
     Bool_t IsValid() const { return kTRUE; }
 
-    ClassDef(MLens, 1) // Parameter container storing the description of a lens
+    ClassDef(MFresnelLens, 1) // Parameter container storing the description of a lens
 };
     
