From 9d02ff4f45c64b199b8d29d2a70e54a1da3975e7 Mon Sep 17 00:00:00 2001 From: Jacob McLaughlin Date: Thu, 30 Jul 2026 10:07:13 -0500 Subject: [PATCH 1/2] copied main file over --- sbncode/CAFMaker/FillBlip.cxx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sbncode/CAFMaker/FillBlip.cxx b/sbncode/CAFMaker/FillBlip.cxx index 5d71edb35..955369a69 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.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; From 5c43c5d0a26f96c87a129461a073b5fcd253af96 Mon Sep 17 00:00:00 2001 From: Jacob McLaughlin Date: Thu, 30 Jul 2026 12:09:48 -0500 Subject: [PATCH 2/2] fix typo --- 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 955369a69..7ad71c0c7 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.energyNoDriftCorrection = CurrentBlip.EnergyNoDriftCorr/1000.; //convert to GeV - NewBlip.energyESTARnoDriftCorrection = CurrentBlip.EnergyESTARNoDriftCorr/1000.; //convert to GeV - NewBlip.energyPSTARnoDriftCorrection = CurrentBlip.EnergyPSTARNoDriftCorr/1000.; //convert to GeV + NewBlip.energyNoDriftCorr = CurrentBlip.EnergyNoDriftCorrection/1000.; //convert to GeV + NewBlip.energyESTARnoDriftCorr = CurrentBlip.EnergyESTARNoDriftCorrection/1000.; //convert to GeV + NewBlip.energyPSTARnoDriftCorr = CurrentBlip.EnergyPSTARNoDriftCorrection/1000.; //convert to GeV NewBlip.proxTrkDist = CurrentBlip.ProxTrkDist; NewBlip.proxTrkID = CurrentBlip.ProxTrkID; NewBlip.inCylinder = CurrentBlip.inCylinder;