This repository has been archived by the owner on May 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0d6e1ff
commit a768d2d
Showing
3 changed files
with
137 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
package cvt; | ||
|
||
import org.junit.Test; | ||
import static org.junit.Assert.*; | ||
|
||
import events.TestEvent; | ||
|
||
import org.jlab.io.base.DataEvent; | ||
import org.jlab.rec.cvt.services.CVTReconstruction; | ||
import org.jlab.service.eb.EBHBEngine; | ||
import org.jlab.service.eb.EBTBEngine; | ||
|
||
/** | ||
* | ||
* @author naharrison | ||
*/ | ||
public class CVTReconstructionTest { | ||
|
||
@Test | ||
public void testCVTReconstruction() { | ||
|
||
DataEvent testEvent = TestEvent.getCVTTestEvent(); | ||
|
||
CVTReconstruction CVTengine = new CVTReconstruction(); | ||
CVTengine.init(); | ||
CVTengine.processDataEvent(testEvent); | ||
|
||
EBHBEngine EBHBengine = new EBHBEngine(); | ||
EBHBengine.init(); | ||
EBHBengine.processDataEvent(testEvent); | ||
|
||
EBTBEngine EBTBengine = new EBTBEngine(); | ||
EBTBengine.init(); | ||
EBTBengine.processDataEvent(testEvent); | ||
|
||
assertEquals(testEvent.hasBank("REC::Particle"), true); | ||
assertEquals(testEvent.getBank("REC::Particle").rows(), 1); | ||
assertEquals(testEvent.getBank("REC::Particle").getByte("charge", 0), 1); | ||
assertEquals(isWithinXPercent(10.0, testEvent.getBank("REC::Particle").getFloat("px", 0), -0.375), true); | ||
assertEquals(isWithinXPercent(10.0, testEvent.getBank("REC::Particle").getFloat("py", 0), 0.483), true); | ||
assertEquals(isWithinXPercent(10.0, testEvent.getBank("REC::Particle").getFloat("pz", 0), 0.674), true); | ||
assertEquals(isWithinXPercent(30.0, testEvent.getBank("REC::Particle").getFloat("vz", 0), -13.9), true); | ||
} | ||
|
||
|
||
public static boolean isWithinXPercent(double X, double val, double standard) { | ||
if(standard >= 0 && val > (1.0 - (X/100.0))*standard && val < (1.0 + (X/100.0))*standard) return true; | ||
else if(standard < 0 && val < (1.0 - (X/100.0))*standard && val > (1.0 + (X/100.0))*standard) return true; | ||
return false; | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters