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
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public class EBEngine extends ReconstructionEngine {

// inputs banks:
String trackType = null;
String ftrackType = null;
String ftofHitsType = null;
String trajectoryType = null;
String covMatrixType = null;
Expand Down Expand Up @@ -135,7 +136,7 @@ public boolean processDataEvent(DataEvent de,EBScalers ebs) {
List<DetectorTrack> tracks = DetectorData.readDetectorTracks(de, trackType, trajectoryType, covMatrixType);
eb.addTracks(tracks);

List<DetectorTrack> ftracks = DetectorData.readFDetectorTracks(de, "FMT::Tracks");
List<DetectorTrack> ftracks = DetectorData.readFDetectorTracks(de, ftrackType);

List<DetectorTrack> ctracks = DetectorData.readCentralDetectorTracks(de, cvtTrackType, cvtTrajType);
eb.addTracks(ctracks);
Expand Down Expand Up @@ -316,6 +317,10 @@ public void setCovMatrixBank(String name) {
public void setTrackType(String name) {
this.trackType = name;
}

public void setFTrackType(String name) {
this.ftrackType = name;
}

public void setFTOFHitsType(String name) {
this.ftofHitsType = name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ public void initBankNames() {

this.setFTOFHitsType("FTOF::clusters");
this.setTrackType("TimeBasedTrkg::TBTracks");
this.setFTrackType("FMT::Tracks");
this.setTrajectoryType("TimeBasedTrkg::Trajectory");
this.setCovMatrixType("TimeBasedTrkg::TBCovMat");
this.setCvtTrackType("CVTRec::Tracks");
Expand Down