37 TVector3 rd_dir = convert3vector(tot_rp_geom.
localToGlobalDirection(det_id, rp_topology_.GetStripReadoutAxisDir()));
39 TVector2
v(rd_dir.X(), rd_dir.Y());
46 return det_algebra_obj;
53 auto it = det_data_map_.find(det_id);
54 if (it != det_data_map_.end()) {
57 det_data_map_[det_id] = prepareReconstAlgebraData(det_id, tot_rp_geom);
58 return &det_data_map_[det_id];
77 vector<HitWithAlg> applicable_hits;
79 for (
auto &ds : hits) {
80 unsigned int detId = ds.detId();
85 applicable_hits.push_back({detId, &
h, alg});
89 if (applicable_hits.size() < 5)
92 TMatrixD
H(applicable_hits.size(), 4);
93 TVectorD
V(applicable_hits.size());
94 TVectorD V_inv(applicable_hits.size());
95 TVectorD U(applicable_hits.size());
97 for (
unsigned int i = 0;
i < applicable_hits.size(); ++
i) {
105 double var = applicable_hits[
i].hit->sigma();
108 V_inv[
i] = 1.0 /
var;
109 U[
i] = applicable_hits[
i].hit->position() - alg_obj->
rec_u_0_;
112 TMatrixD H_T_V_inv(TMatrixD::kTransposed,
H);
113 multiplyByDiagonalInPlace(H_T_V_inv, V_inv);
114 TMatrixD V_a(H_T_V_inv);
119 LogError(
"TotemRPLocalTrackFitterAlgorithm") <<
"Error in TotemRPLocalTrackFitterAlgorithm::fitTrack > "
120 <<
"Fit matrix is singular. Skipping.";
128 fitted_track.
setZ0(z_0);
133 for (
unsigned int i = 0;
i < applicable_hits.size(); ++
i) {
137 double sigma_str = applicable_hits[
i].hit->sigma();
138 double sigma_str_2 = sigma_str * sigma_str;
139 TVector2 fited_det_xy_point = fitted_track.
trackPoint(det_z);
140 double U_readout = applicable_hits[
i].hit->position() - alg_obj->
rec_u_0_;
141 double U_fited = (readout_dir *= fited_det_xy_point);
142 double residual = U_fited - U_readout;
143 TMatrixD V_T_Cov_X_Y(1, 2);
144 V_T_Cov_X_Y(0, 0) = readout_dir.X();
145 V_T_Cov_X_Y(0, 1) = readout_dir.Y();
147 double fit_strip_var = V_T_Cov_X_Y_mult(0, 0) * readout_dir.X() + V_T_Cov_X_Y_mult(0, 1) * readout_dir.Y();
148 double pull_normalization =
sqrt(sigma_str_2 - fit_strip_var);
149 double pull = residual / pull_normalization;
151 Chi_2 += residual * residual / sigma_str_2;
154 *(applicable_hits[
i].
hit), TVector3(fited_det_xy_point.X(), fited_det_xy_point.Y(), det_z), residual, pull);
155 fitted_track.
addHit(applicable_hits[
i].detId, hit_point);
166 for (
int i = 0;
i < mt.GetNrows(); ++
i) {
167 for (
int j = 0;
j < mt.GetNcols(); ++
j) {
void setChiSquared(double &chiSquared)
void multiplyByDiagonalInPlace(TMatrixD &mt, const TVectorD &diag)
A matrix multiplication shorthand.
TVector3 centre_of_det_global_position_
void addHit(unsigned int detId, const FittedRecHit &hit)
void reset()
Resets the reconstruction-data cache.
TVector2 readout_direction_
non paralell projection and rot_cor included
TVector2 trackPoint(double z) const
returns (x, y) vector
Log< level::Error, false > LogError
A track fit through a single RP.
bool available_
if det should be included in the reconstruction
TMatrixD trackPointInterpolationCovariance(double z) const
uint32_t T const *__restrict__ uint32_t const *__restrict__ int32_t int Histo::index_type cudaStream_t V
list var
if using global norm cols_to_minmax = ['t_delta', 't_hmaxNearP','t_emaxNearP', 't_hAnnular', 't_eAnnular','t_pt','t_nVtx','t_ieta','t_eHcal10', 't_eHcal30','t_rhoh','t_eHcal'] df[cols_to_minmax] = df[cols_to_minmax].apply(lambda x: (x - x.min()) / (x.max() - x.min()) if (x.max() - x.min() > 0) else 1.0/200.0)
double rec_u_0_
in mm, position of det. centre projected on readout direction
TotemRPLocalTrackFitterAlgorithm(const edm::ParameterSet &conf)
Reconstructed hit in TOTEM RP.
The manager class for TOTEM RP geometry.
void setValid(bool valid)
RPDetCoordinateAlgebraObjs prepareReconstAlgebraData(unsigned int det_id, const CTPPSGeometry &tot_rp_geom)
Build the reconstruction data.
bool fitTrack(const edm::DetSetVector< TotemRPRecHit > &hits, double z_0, const CTPPSGeometry &tot_geom, TotemRPLocalTrack &fitted_track)
performs the track fit, returns true if successful
Vector localToGlobalDirection(unsigned int id, const Vector &) const
Vector sensorTranslation(unsigned int id) const
void setCovarianceMatrix(const TMatrixD &par_covariance_matrix)
void setParameterVector(const TVectorD &track_params_vector)
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
RPDetCoordinateAlgebraObjs * getDetAlgebraData(unsigned int det_id, const CTPPSGeometry &tot_rp_geom)