Skip to content

Commit 02a9503

Browse files
committed
cleaning
1 parent 20a563b commit 02a9503

2 files changed

Lines changed: 0 additions & 3 deletions

File tree

reconstruction/alert/src/main/java/org/jlab/rec/ahdc/KalmanFilter/KalmanFilter.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ public class KalmanFilter {
4141
private boolean projBasedAtofPrediction = false; // flag to do or not a projection based prediction of the ATOF hits
4242

4343
// mm, they are the misalignement with respect to the AHDC: the are defined in ALERTEngine
44-
private double clas_alignement = 0;
4544
private double atof_alignement = 0;
4645

4746
private int counter = 0; // number of utilisation of the Kalman Filter
@@ -411,7 +410,6 @@ else if (layer == 3) {
411410
}
412411

413412
public void set_ATOF_detector(AlertTOFDetector atof) { this.ATOFdet = atof;}
414-
public void set_clas_alignement(double _shift) {this.clas_alignement = _shift;}
415413
public void set_atof_alignement(double _shift) {this.atof_alignement = _shift;}
416414
public void set_vz_constraint(double _vz) {this.vz_constraint = _vz;}
417415
public void set_vertex_flag(boolean _flag) {this.IsVtxDefined = _flag;}

reconstruction/alert/src/main/java/org/jlab/service/alert/ALERTEngine.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,6 @@ public boolean processDataEvent(DataEvent event) {
472472
int Niter = 40;
473473
KalmanFilter KF = new KalmanFilter(proton, Niter);
474474
KF.set_ATOF_detector(ATOF); // Reference the ATOF geometry in the Kalman Filter
475-
KF.set_clas_alignement(clas_alignement);
476475
KF.set_atof_alignement(atof_alignement);
477476
KF.set_vz_constraint(vz_constraint);
478477
KF.set_vertex_flag(IsVertexDefined);

0 commit comments

Comments
 (0)