Skip to content

Commit 6f5a64e

Browse files
authored
doc(qadb): add reheat to the checklist, and set logger level for clock analysis (#467)
1 parent 04f182b commit 6f5a64e

2 files changed

Lines changed: 13 additions & 0 deletions

File tree

doc/qa.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,16 @@ If you are performing a manual QA as part of a cross check, skip to the next sec
7070
- run `qtl histogram --check-cache` again, when done, in case additional files were auto-removed from `/cache` during your `jcache` run
7171
</details>
7272

73+
<details>
74+
<summary>- [ ] reheat the data, if necessary</summary>
75+
76+
- see [RG-A Spring 2018](/qadb/notes/rga_sp18.md) and [RG-K Fall 2018](/qadb/notes/rgk_fa18.md) for details
77+
- basically:
78+
- use `qtl xcharge` to check the charge
79+
- if reheating is needed, use `qtl reheat`
80+
- use `qtl xcharge` afterward to check the reheated charge
81+
</details>
82+
7383
<details>
7484
<summary>- [ ] verify run-dependent settings are correct for these data</summary>
7585

qa-physics/charge_analysis/analyze_clock.groovy

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import org.jlab.jnp.hipo4.data.Bank;
77
import org.jlab.jnp.hipo4.data.SchemaFactory;
88
import java.util.List;
99
import java.util.ArrayList;
10+
import java.util.logging.Logger;
11+
import java.util.logging.Level;
1012

1113
if(args.length<4) {
1214
System.err.println """
@@ -22,6 +24,7 @@ def rollover = args[3] == '1'
2224
List<String> filenames = new ArrayList<>();
2325
filenames.add(in_file);
2426

27+
Logger.getLogger("org.jlab.detector.scalers.DaqScalersSequence").setLevel(Level.INFO);
2528
ConstantsManager consts = new ConstantsManager();
2629
consts.init("/runcontrol/fcup","/runcontrol/slm","/runcontrol/helicity","/daq/config/scalers/dsc1","/runcontrol/hwp");
2730
DaqScalersSequence seq = DaqScalersSequence.rebuildSequence(1, consts, filenames);

0 commit comments

Comments
 (0)