Index: branches/eam_branches/ipp-20211108/psLib/src/fits/psFits.h
===================================================================
--- branches/eam_branches/ipp-20211108/psLib/src/fits/psFits.h	(revision 41907)
+++ branches/eam_branches/ipp-20211108/psLib/src/fits/psFits.h	(revision 41948)
@@ -60,5 +60,5 @@
     PS_FITS_SCALE_ASINH_STDEV_NEGATIVE, ///< Do asinh scaling, auto-scale to sample stdev, place mean at upper limit
     PS_FITS_SCALE_ASINH_STDEV_BOTH,     ///< Do asinh scaling, auto-scale to sample stdev, place mean at middle
-    PS_FITS_SCALE_ASINH_MANUAL          ///< Manual scaling after doing asinh scaling.
+    PS_FITS_SCALE_ASINH_MANUAL          ///< Manual scaling after doing asinh scaling.(use specified BSCALE, BZERO, BOFFSET, BSOFTEN)
 } psFitsScaling;
 
Index: branches/eam_branches/ipp-20211108/psLib/src/fits/psFitsImage.c
===================================================================
--- branches/eam_branches/ipp-20211108/psLib/src/fits/psFitsImage.c	(revision 41907)
+++ branches/eam_branches/ipp-20211108/psLib/src/fits/psFitsImage.c	(revision 41948)
@@ -744,5 +744,5 @@
       }
     }	
-    // Remove any BSOFTENvalues that exist in the header if we are not using that scaling anymore
+    // Remove any BSOFTEN values that exist in the header if we are not using that scaling anymore
     if (options && (!((options->scaling == PS_FITS_SCALE_ASINH_RANGE)||
 		      (options->scaling == PS_FITS_SCALE_ASINH_MANUAL)||
Index: branches/eam_branches/ipp-20211108/psLib/src/fits/psFitsScale.c
===================================================================
--- branches/eam_branches/ipp-20211108/psLib/src/fits/psFitsScale.c	(revision 41907)
+++ branches/eam_branches/ipp-20211108/psLib/src/fits/psFitsScale.c	(revision 41948)
@@ -963,4 +963,10 @@
         *bzero = options->bzero;
 	*boffset = options->boffset;
+        break;
+      case PS_FITS_SCALE_ASINH_MANUAL:
+        *bscale = options->bscale;
+        *bzero = options->bzero;
+	*boffset = options->boffset;
+	*bsoften = options->bsoften;
         break;
       default:
