You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sbndcode/TPCPMTBarycenterMatching/TPCPMTBarycenterMatching_module.cc
+23-1Lines changed: 23 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -225,6 +225,7 @@ class TPCPMTBarycenterMatchProducer : public art::EDProducer {
225
225
std::vector<std::string> fInputTags; ///< Suffix added onto fOpFlashLabel and fPandoraLabel, used by ICARUS for separate cryostat labels but could be empty
226
226
std::vector<std::string> fOpFlashesModuleLabel; ///< Label for PMT reconstruction products
227
227
std::string fPandoraLabel; ///< Label for Pandora output products
228
+
std::string fOpT0Label;
228
229
boolfCollectionOnly; ///< Only use TPC spacepoints from the collection plane
229
230
doublefDistanceCandidateFlashes; ///< Maximum distance between candidate flashes to be considered for matching (cm)
230
231
std::vector<double> fCalAreaConst; /// Calibration area constants for wire plane
@@ -266,6 +267,9 @@ class TPCPMTBarycenterMatchProducer : public art::EDProducer {
266
267
doublefDeltaY; ///< | Matched flash Y center - charge Y center | (cm)
267
268
doublefDeltaZ; ///< | Matched flash Z center - charge Z center | (cm)
268
269
doublefRadius; ///< Hypotenuse of DeltaY and DeltaZ *parameter minimized by matching* (cm)
270
+
doublefChi2; ///< Chi2 to be minimized when matching flash to slice (dimensionless)
271
+
doublefScore; ///< Score to be maximized when matching flash to slice (dimensionless)
272
+
doublefAngle; ///< Angle between charge PCA and light PCA (degrees)
269
273
doublefDeltaY_Trigger; ///< | Triggering flash Y center - charge Y center | (cm)
270
274
doublefDeltaZ_Trigger; ///< | Triggering flash Z center - charge Z center | (cm)
271
275
doublefRadius_Trigger; ///< Hypotenuse of DeltaY_Trigger and DeltaZ_Trigger (cm)
0 commit comments