Index: /trunk/ippScripts/scripts/detrend_reject_exp.pl
===================================================================
--- /trunk/ippScripts/scripts/detrend_reject_exp.pl	(revision 9451)
+++ /trunk/ippScripts/scripts/detrend_reject_exp.pl	(revision 9452)
@@ -34,6 +34,6 @@
 # This measures how close it is to what's expected
 use constant REJECT_MEAN => {
-    'bias' => 10,		# Should be fairly flat; some CRs
-    'dark' => 100,		# Lots of CRs
+    'bias' => 0,		# Should be fairly flat; some CRs
+    'dark' => 0,		# Lots of CRs
     'shutter' => 10,		# Should be less than 10 sec
     'flat' => undef		# Can't define expected value (depends on exposure level)
@@ -43,8 +43,8 @@
 # This measures how much variation there is within the components of an exposure, compared to "typical"
 use constant REJECT_STDEV => {
-    'bias' => 10, # Components should have the same degree of variation
-    'dark' => 10, # Components should have the same degree of variation
+    'bias' => 0, # Components should have the same degree of variation
+    'dark' => 0, # Components should have the same degree of variation
     'shutter' => undef,		# Might be significant variation
-    'flat' => 10 # Components should have the same degree of variation
+    'flat' => 0 # Components should have the same degree of variation
     };
 
@@ -52,8 +52,8 @@
 # This measures how structured the images are, compared to "typical"
 use constant REJECT_MEAN_STDEV => {
-    'bias' => 5,		# All images should be equally structured
-    'dark' => 5,		# All images should be equally structured
-    'shutter' => 5,		# All images should be equally structured
-    'flat' => 5 		# All images should be equally structured
+    'bias' => 0,		# All images should be equally structured
+    'dark' => 0,		# All images should be equally structured
+    'shutter' => 0,		# All images should be equally structured
+    'flat' => 0 		# All images should be equally structured
     };
 
Index: /trunk/ippScripts/scripts/detrend_reject_imfile.pl
===================================================================
--- /trunk/ippScripts/scripts/detrend_reject_imfile.pl	(revision 9451)
+++ /trunk/ippScripts/scripts/detrend_reject_imfile.pl	(revision 9452)
@@ -46,5 +46,5 @@
     'dark' => 0,		# Dark should be zero
     'shutter' => undef,		# Shutter could be anything (depends on exposure level)
-    'flat' => undef		# Flat could be anything (depends on exposure level)
+    'flat' => 0		# Flat could be anything (depends on exposure level)
     };
 
@@ -52,8 +52,8 @@
 # This measures how close it is to what's expected
 use constant REJECT_INDIVIDUAL_MEAN => {
-    'bias' => 5,		# Should be fairly flat; some CRs
-    'dark' => 10,		# Lots of CRs
+    'bias' => 0,		# Should be fairly flat; some CRs
+    'dark' => 0,		# Lots of CRs
     'shutter' => undef,		# Can't define expected value (depends on exposure level)
-    'flat' => undef		# Can't define expected value (depends on exposure level)
+    'flat' => 0		# Can't define expected value (depends on exposure level)
     };
 
@@ -61,8 +61,8 @@
 # This measures how much variation there is in each component
 use constant REJECT_INDIVIDUAL_STDEV => {
-    'bias' => 10,		# Should be fairly flat; some CRs
-    'dark' => 100,		# Lots of CRs
+    'bias' => 0,		# Should be fairly flat; some CRs
+    'dark' => 0,		# Lots of CRs
     'shutter' => undef,		# Can be significant structure
-    'flat' => 1000		# Stars and galaxies
+    'flat' => 0	       	# Stars and galaxies
     };
 
@@ -70,8 +70,8 @@
 # This measures how close it is to what's expected
 use constant REJECT_SAMPLE_MEAN => {
-    'bias' => 10,		# Should be little variation between chips
-    'dark' => 100,		# Could be some glow on some chips
+    'bias' => 0,		# Should be little variation between chips
+    'dark' => 0,		# Could be some glow on some chips
     'shutter' => undef,		# Can't define expected value (depends on exposure level)
-    'flat' => undef		# Can't define expected value (depends on exposure level)
+    'flat' => 0		# Can't define expected value (depends on exposure level)
     };
 
@@ -79,8 +79,8 @@
 # This measures how much variation there is across the components
 use constant REJECT_SAMPLE_STDEV => {
-    'bias' => 10,		# Should be little variation between chips
-    'dark' => 100,		# Could be some glow on some chips
+    'bias' => 0,		# Should be little variation between chips
+    'dark' => 0,		# Could be some glow on some chips
     'shutter' => undef,		# Can be significant structure
-    'flat' => 500		# Could be features on some chips, but all should be about the same
+    'flat' => 0		        # Could be features on some chips, but all should be about the same
     };
 
