File tree Expand file tree Collapse file tree
reconstruction/alert/src/main/java/org/jlab Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ;}
Original file line number Diff line number Diff 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 );
You can’t perform that action at this time.
0 commit comments