Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions doc/qa.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
</details>

<details>
<summary>- [ ] reheat the data, if necessary</summary>

- 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
</details>

<details>
<summary>- [ ] verify run-dependent settings are correct for these data</summary>

Expand Down
3 changes: 3 additions & 0 deletions qa-physics/charge_analysis/analyze_clock.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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 """
Expand All @@ -22,6 +24,7 @@ def rollover = args[3] == '1'
List<String> 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);
Expand Down