Skip to content

Commit

Permalink
[core] TRG should ignore the daq trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
kostorr committed Apr 13, 2022
1 parent 5ed39dc commit 5b0c951
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions core/integration/trg/trgutil.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,12 @@ func parseRunLine(line string) (run Run, err error) {

detectorsSSlice := strings.Split(cols[3], ",")
for _, item := range detectorsSSlice {
// don't interfere with daq
// also daq not in known system ids -> results in error
if strings.TrimSpace(item) == "daq" {
continue
}

var det system.ID
det, err = system.IDString(strings.TrimSpace(item))
if err != nil {
Expand Down

0 comments on commit 5b0c951

Please sign in to comment.