diff --git a/doc/qa.md b/doc/qa.md
index f08093694..110796595 100644
--- a/doc/qa.md
+++ b/doc/qa.md
@@ -70,6 +70,16 @@ If you are performing a manual QA as part of a cross check, skip to the next sec
- run `qtl histogram --check-cache` again, when done, in case additional files were auto-removed from `/cache` during your `jcache` run
+
+- [ ] reheat the data, if necessary
+
+- see [RG-A Spring 2018](/qadb/notes/rga_sp18.md) and [RG-K Fall 2018](/qadb/notes/rgk_fa18.md) for details
+- basically:
+ - use `qtl xcharge` to check the charge
+ - if reheating is needed, use `qtl reheat`
+ - use `qtl xcharge` afterward to check the reheated charge
+
+
- [ ] verify run-dependent settings are correct for these data
diff --git a/qa-physics/charge_analysis/analyze_clock.groovy b/qa-physics/charge_analysis/analyze_clock.groovy
index 29e4ce2c5..3c51844f3 100644
--- a/qa-physics/charge_analysis/analyze_clock.groovy
+++ b/qa-physics/charge_analysis/analyze_clock.groovy
@@ -7,6 +7,8 @@ import org.jlab.jnp.hipo4.data.Bank;
import org.jlab.jnp.hipo4.data.SchemaFactory;
import java.util.List;
import java.util.ArrayList;
+import java.util.logging.Logger;
+import java.util.logging.Level;
if(args.length<4) {
System.err.println """
@@ -22,6 +24,7 @@ def rollover = args[3] == '1'
List filenames = new ArrayList<>();
filenames.add(in_file);
+Logger.getLogger("org.jlab.detector.scalers.DaqScalersSequence").setLevel(Level.INFO);
ConstantsManager consts = new ConstantsManager();
consts.init("/runcontrol/fcup","/runcontrol/slm","/runcontrol/helicity","/daq/config/scalers/dsc1","/runcontrol/hwp");
DaqScalersSequence seq = DaqScalersSequence.rebuildSequence(1, consts, filenames);