Index: /trunk/FACT++/gui/QCameraWidget.cc
===================================================================
--- /trunk/FACT++/gui/QCameraWidget.cc	(revision 12102)
+++ /trunk/FACT++/gui/QCameraWidget.cc	(revision 12103)
@@ -12,4 +12,6 @@
         fEnable.assign(1440, true);
         lastFace = -1;
+        fShowPixelMoveOver = true;
+        fShowPatchMoveOver = true;
 
         CalculatePixelsColor();
@@ -252,7 +254,24 @@
     {
         int face = PixelAtPosition(cEvent->pos());
+//        cout << face << endl;
         if (face != -1 && lastFace != face) {
             emit signalPixelMoveOver(face);
         }
+        if (lastFace != face)
+        {
+            if (fShowPixelMoveOver)
+                fWhite = face;
+
+            if (fShowPatchMoveOver)
+                if (face != -1)
+                    fWhitePatch = pixelsPatch[face];
+                else
+                    fWhitePatch = -1;
+        }
+
+        if (fShowPixelMoveOver || fShowPatchMoveOver)
+            if (lastFace != face && isVisible())
+                updateGL();
+
         lastFace = face;
     }
@@ -279,5 +298,16 @@
 
     }
-
+    void QCameraWidget::ShowPixelCursor(bool on)
+    {
+        fShowPixelMoveOver = on;
+        if (isVisible() && autoRefresh)
+            updateGL();
+    }
+    void QCameraWidget::ShowPatchCursor(bool on)
+    {
+        fShowPatchMoveOver = on;
+        if (isVisible() && autoRefresh)
+            updateGL();
+    }
     void QCameraWidget::SetEnable(int idx, bool b)
      {
Index: /trunk/FACT++/gui/QCameraWidget.h
===================================================================
--- /trunk/FACT++/gui/QCameraWidget.h	(revision 12102)
+++ /trunk/FACT++/gui/QCameraWidget.h	(revision 12103)
@@ -24,5 +24,6 @@
 
     int lastFace;
-
+    bool fShowPixelMoveOver;
+    bool fShowPatchMoveOver;
 
 public:
@@ -51,4 +52,7 @@
 
 
+     void ShowPixelCursor(bool);
+     void ShowPatchCursor(bool);
+
 private:
      void CalculatePixelsColor();
Index: /trunk/FACT++/gui/RawEventsViewer/RawEventsViewer.cc
===================================================================
--- /trunk/FACT++/gui/RawEventsViewer/RawEventsViewer.cc	(revision 12102)
+++ /trunk/FACT++/gui/RawEventsViewer/RawEventsViewer.cc	(revision 12103)
@@ -1037,11 +1037,11 @@
     }
 
-    if (calibInputFile->HasKey("NROI"))
-    {
-        cout << "Looks like you're trying to load a regular raw data file as DRS calib. aborting." << endl;
-        delete calibInputFile;
-        calibInputFile = NULL;
-        return;
-    }
+//    if (calibInputFile->HasKey("NROI"))
+//    {
+//        cout << "Looks like you're trying to load a regular raw data file as DRS calib. aborting." << endl;
+//        delete calibInputFile;
+//        calibInputFile = NULL;
+//        return;
+//    }
 
     if (!calibInputFile->SetPtrAddress("BaselineMean", baseLineMean)){
