Skip to content
This repository has been archived by the owner on May 18, 2023. It is now read-only.

Commit

Permalink
Updated yaml and unit-tests for new EB
Browse files Browse the repository at this point in the history
  • Loading branch information
naharrison committed May 19, 2017
1 parent c8607c6 commit 917cb8f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions etc/services/reconstruction.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ services:
name: LTCC
- class: org.jlab.service.ec.ECEngine
name: EC
- class: org.jlab.service.eb.EBEngine
- class: org.jlab.service.eb.EBHBEngine
name: EBHB
- class: org.jlab.service.eb.EBEngine
- class: org.jlab.service.eb.EBTBEngine
name: EBTB
configuration:
io-services:
Expand Down
8 changes: 4 additions & 4 deletions validation/unit-tests/src/ec/ECReconstructionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import org.jlab.io.base.DataEvent;
import org.jlab.service.ec.ECEngine;
import org.jlab.service.eb.EBEngine;
import org.jlab.service.eb.EBHBEngine;

/**
*
Expand All @@ -24,9 +24,9 @@ public void testECReconstruction() {
engineEC.init();
engineEC.processDataEvent(testEvent);

EBEngine engineEB = new EBEngine();
engineEB.init();
engineEB.processDataEvent(testEvent);
EBHBEngine engineEBHB = new EBHBEngine();
engineEBHB.init();
engineEBHB.processDataEvent(testEvent);

//testEvent.show();
//testEvent.getBank("ECAL::clusters").show();
Expand Down

0 comments on commit 917cb8f

Please sign in to comment.