@@ -262,9 +262,12 @@ namespace sbn {
262262 std::vector<WireInfo> wires2; // !< List of wire information on plane 2
263263
264264 float t0PFP; // !< Particle-Flow-Particle (Pandora) T0. Derived from cathode crossing
265- float t0CRTTrack; // !< t0 from CRT Track
266- float t0CRTHit; // !< t0 from CRT Hit
267- int whicht0; // !< Which T0 producer was used to tag. 0 is Pandora, 1 is CRTTrack 2 is CRTHit
265+ float t0CRTTrack; // !< t0 from CRT Track (SBND)
266+ float t0CRTHit; // !< t0 from CRT Hit (ICARUS)
267+ float t0CRTSpacePoint; // !< t0 from CRT SpacePoint (SBND)
268+ int whicht0; // !< Which T0 producer was used to tag. 0 is Pandora, 1 is CRTTrack 2 is CRTHit, 3 is CRTSpacePoint
269+ float crtMatchingScore; // <! An assessment of the quality of the match made for whicht0 == 1,2,3
270+ float xShiftCRT; // <! If whicht0 == 1,2,3 the amount by which the track was shifted in x
268271 int id; // !< ID of track
269272 int cryostat; // !< Cryostat number of track
270273 bool clear_cosmic_muon; // !< Whether Pandora thinks the track is "clearly" a cosmic
@@ -317,6 +320,9 @@ namespace sbn {
317320 t0PFP (std::numeric_limits<float >::lowest()),
318321 t0CRTTrack (std::numeric_limits<float >::lowest()),
319322 t0CRTHit (std::numeric_limits<float >::lowest()),
323+ t0CRTSpacePoint (std::numeric_limits<float >::lowest()),
324+ crtMatchingScore (std::numeric_limits<float >::lowest()),
325+ xShiftCRT (0 ),
320326 id (-1 ),
321327 cryostat (-1 ),
322328 clear_cosmic_muon (false ),
0 commit comments