Index: trunk/Mars/macros/hawcseye/fresnellens_image.C
===================================================================
--- trunk/Mars/macros/hawcseye/fresnellens_image.C	(revision 19602)
+++ trunk/Mars/macros/hawcseye/fresnellens_image.C	(revision 19615)
@@ -4,5 +4,5 @@
     Double_t telaz = 0;      // [deg] Telescope orientation Azimuth
 
-    Double_t dzd   = 0;      // [deg] Relative angle of light ray Zd
+    Double_t dzd   = 8;      // [deg] Relative angle of light ray Zd
     Double_t daz   = 0;      // [deg] Relative angle of light ray Az
 
@@ -12,24 +12,30 @@
     // ----------------------------------------------
 
+    MFresnelLens lens("Reflector");
+
+    MPointingPos pointpos;
+    pointpos.SetLocalPosition(telzd, telaz);
+
+    MPointingPos srcpos("Source");
+    srcpos.SetLocalPosition(dzd, daz);
+
+    MGeomCamFAMOUS geom(F);
+
+    MSimRays simrays;
+    simrays.SetNameReflector("Reflector");
+    simrays.SetWavelengthRange(700, 700);
+    //simrays.SetNumPhotons(100000);
+
+    // ----------------------------------------------
+
     MParList plist;
     MTaskList tlist;
     plist.AddToList(&tlist);
 
-    MFresnelLens lens("Reflector");
     plist.AddToList(&lens);
-
-    MPointingPos pointpos;
-    pointpos.SetLocalPosition(telzd, telaz);
     plist.AddToList(&pointpos);
-
-    MPointingPos srcpos("Source");
     plist.AddToList(&srcpos);
-
-    MGeomCamFAMOUS geom(F);
     plist.AddToList(&geom);
 
-    MSimRays simrays;
-    simrays.SetNameReflector("Reflector");
-    //simrays.SetWavelengthRange(300, 900);
     tlist.AddToList(&simrays);
 
@@ -78,5 +84,4 @@
     loop.SetParList(&plist);
 
-    srcpos.SetLocalPosition(dzd, daz);
     if (!loop.Eventloop(100))
         return;
