From 247bdc1341b40efde5171caaf2f4f8fc23171a3b Mon Sep 17 00:00:00 2001 From: Jacob McLaughlin Date: Mon, 6 Jul 2026 15:08:05 -0500 Subject: [PATCH 1/2] Added new blip energy records --- sbncode/CAFMaker/FillBlip.cxx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sbncode/CAFMaker/FillBlip.cxx b/sbncode/CAFMaker/FillBlip.cxx index 5d71edb35..c6f992ca8 100644 --- a/sbncode/CAFMaker/FillBlip.cxx +++ b/sbncode/CAFMaker/FillBlip.cxx @@ -19,6 +19,9 @@ namespace caf NewBlip.energy = CurrentBlip.Energy/1000.; //convert to GeV NewBlip.energyESTAR = CurrentBlip.EnergyESTAR/1000.; //convert to GeV NewBlip.energyPSTAR = CurrentBlip.EnergyPSTAR/1000.; //convert to GeV + NewBlip.energyNoDriftCorr = CurrentBlip.EnergyNoDriftCorr/1000.; //convert to GeV + NewBlip.energyESTARnoDriftCorr = CurrentBlip.EnergyESTARNoDriftCorr/1000.; //convert to GeV + NewBlip.energyPSTARnoDriftCorr = CurrentBlip.EnergyPSTARNoDriftCorr/1000.; //convert to GeV NewBlip.proxTrkDist = CurrentBlip.ProxTrkDist; NewBlip.proxTrkID = CurrentBlip.ProxTrkID; NewBlip.inCylinder = CurrentBlip.inCylinder; From b17ae08f6e278f0bf8e975ca179cf3f5c9bbe9dc Mon Sep 17 00:00:00 2001 From: Jacob McLaughlin Date: Thu, 9 Jul 2026 11:39:38 -0500 Subject: [PATCH 2/2] fixed typos --- sbncode/CAFMaker/FillBlip.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sbncode/CAFMaker/FillBlip.cxx b/sbncode/CAFMaker/FillBlip.cxx index c6f992ca8..955369a69 100644 --- a/sbncode/CAFMaker/FillBlip.cxx +++ b/sbncode/CAFMaker/FillBlip.cxx @@ -19,9 +19,9 @@ namespace caf NewBlip.energy = CurrentBlip.Energy/1000.; //convert to GeV NewBlip.energyESTAR = CurrentBlip.EnergyESTAR/1000.; //convert to GeV NewBlip.energyPSTAR = CurrentBlip.EnergyPSTAR/1000.; //convert to GeV - NewBlip.energyNoDriftCorr = CurrentBlip.EnergyNoDriftCorr/1000.; //convert to GeV - NewBlip.energyESTARnoDriftCorr = CurrentBlip.EnergyESTARNoDriftCorr/1000.; //convert to GeV - NewBlip.energyPSTARnoDriftCorr = CurrentBlip.EnergyPSTARNoDriftCorr/1000.; //convert to GeV + NewBlip.energyNoDriftCorrection = CurrentBlip.EnergyNoDriftCorr/1000.; //convert to GeV + NewBlip.energyESTARnoDriftCorrection = CurrentBlip.EnergyESTARNoDriftCorr/1000.; //convert to GeV + NewBlip.energyPSTARnoDriftCorrection = CurrentBlip.EnergyPSTARNoDriftCorr/1000.; //convert to GeV NewBlip.proxTrkDist = CurrentBlip.ProxTrkDist; NewBlip.proxTrkID = CurrentBlip.ProxTrkID; NewBlip.inCylinder = CurrentBlip.inCylinder;