From 4f02c4c334b9f11c5f67261f8743d057617d2f55 Mon Sep 17 00:00:00 2001
From: pcain-usgs <pcain@usgs.gov>
Date: Tue, 21 Jul 2020 10:56:46 -0600
Subject: [PATCH] Process all channels with can_produce_data

---
 geomagio/algorithm/AdjustedAlgorithm.py | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/geomagio/algorithm/AdjustedAlgorithm.py b/geomagio/algorithm/AdjustedAlgorithm.py
index c1135e984..281005b55 100644
--- a/geomagio/algorithm/AdjustedAlgorithm.py
+++ b/geomagio/algorithm/AdjustedAlgorithm.py
@@ -169,17 +169,18 @@ class AdjustedAlgorithm(Algorithm):
             return True
 
         # check validity of remaining channels
-        cpd = False
         for c in channels:
             if c != "F":
-                cpd = super().can_produce_data(
-                    starttime, endtime, stream.select(channel=c)
-                )
-        if cpd == True:
-            return True
+                if (
+                    super().can_produce_data(
+                        starttime, endtime, stream.select(channel=c)
+                    )
+                    == False
+                ):
+                    return False
 
         # return false if F or remaining channels cannot produce data
-        return False
+        return True
 
     @classmethod
     def add_arguments(cls, parser):
-- 
GitLab