Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,15 @@ services:
name: FTEB
- class: org.jlab.service.raster.RasterEngine
name: RASTER
# DC denoising
- class: org.jlab.service.ai.DCDenoiseEngine
name: DCDN
# DC clustering: nominal algoritm, filled the cluster bank for ai and conventional tracking
- class: org.jlab.service.dc.DCHBClustering
name: DCCR
# This is where the AI plugin would go. THe AI code reads the HB clusters.
- class: org.jlab.service.ai.DCClsComboEngine
name: DCCC
- class: org.jlab.service.mltn.MLTDEngine
name: MLTD
# DC using clustering on AI hits: NN assisted HB tracking
- class: org.jlab.service.dc.DCHBTrackingAI
name: DCHTAI
- class: org.jlab.service.dc.DCHBPostClusterAI
name: DCHAI
- class: org.jlab.service.ftof.FTOFHBEngine
name: FTOFHB
- class: org.jlab.service.ec.ECEngine
Expand Down Expand Up @@ -82,7 +79,9 @@ configuration:
MAGFIELDS:
magfieldSolenoidMap: Symm_solenoid_r601_phi1_z1201_13June2018.dat
magfieldTorusMap: Full_torus_r251_phi181_z251_25Jan2021.dat
DCHTAI:
MLTD:
run: "6302"
DCHAI:
outputBankPrefix: "HB"

mime-types:
Expand Down
15 changes: 8 additions & 7 deletions etc/services/data-ai.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,18 @@ services:
name: FTEB
- class: org.jlab.service.raster.RasterEngine
name: RASTER
# DC denoising
- class: org.jlab.service.ai.DCDenoiseEngine
name: DCDN
# DC clustering: nominal algoritm, filled the cluster bank for ai and conventional tracking
- class: org.jlab.service.dc.DCHBClustering
name: DCCR
# This is where the AI plugin would go. THe AI code reads the HB clusters.
- class: org.jlab.service.mltn.MLTDEngine
name: MLTD
- class: org.jlab.service.ai.DCClsComboEngine
name: DCCC
# DC using clustering on AI hits: NN assisted HB tracking
- class: org.jlab.service.dc.DCHBPostClusterAI
name: DCHAI
- class: org.jlab.service.dc.DCHBTrackingAI
name: DCHTAI
- class: org.jlab.service.ftof.FTOFHBEngine
name: FTOFHB
- class: org.jlab.service.ec.ECEngine
Expand Down Expand Up @@ -79,9 +82,7 @@ configuration:
MAGFIELDS:
magfieldSolenoidMap: Symm_solenoid_r601_phi1_z1201_13June2018.dat
magfieldTorusMap: Full_torus_r251_phi181_z251_25Jan2021.dat
MLTD:
run: "6302"
DCHAI:
DCHTAI:
outputBankPrefix: "HB"

mime-types:
Expand Down
5 changes: 5 additions & 0 deletions reconstruction/uber/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@
<artifactId>swim-tools</artifactId>
<version>14.1.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jlab.clas12.detector</groupId>
<artifactId>clas12detector-ai</artifactId>
<version>14.1.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jlab.clas12.detector</groupId>
<artifactId>clas12detector-dc</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@
import org.jlab.service.mltn.MLTDEngine;
import org.jlab.service.rtpc.RTPCEngine;
import org.jlab.calibration.service.CalibBanksEngine;
import org.jlab.service.ai.DCClsComboEngine;
import org.jlab.service.ai.DCDenoiseEngine;
import org.jlab.service.dc.DCHBPostClusterConv;
import org.jlab.service.dc.DCHBTrackingAI;
import org.jlab.service.dc.DCTBEngineAI;
import org.jlab.service.eb.EBHBAIEngine;
import org.jlab.service.eb.EBTBAIEngine;
Expand Down Expand Up @@ -82,8 +85,8 @@ public HitBasedCV() {
}
}

public static class HitBasedAI extends UberEngine {
public HitBasedAI() {
public static class HitBasedAIClassic extends UberEngine {
public HitBasedAIClassic() {
super("HB","uber","1.0");
add(new DCHBClustering(),
new MLTDEngine(),
Expand All @@ -97,8 +100,24 @@ public HitBasedAI() {
}
}

public static class HitBasedAICV extends UberEngine {
public HitBasedAICV() {
public static class HitBasedAI extends UberEngine {
public HitBasedAI() {
super("HB","uber","1.0");
add(new DCDenoiseEngine(),
new DCHBClustering(),
new DCClsComboEngine(),
new DCHBTrackingAI("HB"),
new BANDEngine(),
new HTCCReconstructionService(),
new LTCCEngine(),
new FTOFHBEngine(),
new ECEngine(),
new EBHBEngine());
}
}

public static class HitBasedAIClassicCV extends UberEngine {
public HitBasedAIClassicCV() {
super("HB","uber","1.0");
add(new DCHBClustering(),
new MLTDEngine(),
Expand All @@ -114,6 +133,23 @@ public HitBasedAICV() {
}
}

public static class HitBasedAICV extends UberEngine {
public HitBasedAICV() {
super("HB","uber","1.0");
add(new DCDenoiseEngine(),
new DCHBClustering(),

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is "new DCClsComboEngine()," missed?

new DCHBPostClusterConv(),
new DCHBTrackingAI("AI"),
new BANDEngine(),
new HTCCReconstructionService(),
new LTCCEngine(),
new FTOFHBEngine(),
new ECEngine(),
new EBHBEngine(),
new EBHBAIEngine());
}
}

public static class TimeBasedCV extends UberEngine {
public TimeBasedCV() {
super("TB","uber","1.0");
Expand Down
Loading