Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 9362)
+++ trunk/MagicSoft/Mars/Changelog	(revision 9363)
@@ -57,4 +57,8 @@
      - improved output
      - added option for homogenous distribution
+
+   * mmuon/MMuonCalibParCalc.cc:
+     - converted cuts from mm to deg so they will work also for other
+       geometries
 
 
Index: trunk/MagicSoft/Mars/mmuon/MMuonCalibParCalc.cc
===================================================================
--- trunk/MagicSoft/Mars/mmuon/MMuonCalibParCalc.cc	(revision 9362)
+++ trunk/MagicSoft/Mars/mmuon/MMuonCalibParCalc.cc	(revision 9363)
@@ -185,7 +185,9 @@
     fMuonCalibPar->SetArcWidth(width);
 
+    const Double_t rad = fMuonSearchPar->GetRadius()*fGeomCam->GetConvMm2Deg();
+    const Double_t dev = fMuonSearchPar->GetDeviation()*fGeomCam->GetConvMm2Deg();
+
     // Check if this is a 'Write-Out' candidate
-    if (fMuonCalibPar->GetArcPhi()>160    && fMuonSearchPar->GetRadius()<400 &&
-        fMuonSearchPar->GetDeviation()<50 && fMuonSearchPar->GetRadius()>170)
+    if (arcphi>160 && rad>0.573  && rad<1.35 && dev<0.169)
         fMuonCalibPar->SetReadyToSave();
 
