Skip to content

Commit bf14337

Browse files
committed
refine comments in SRTrueDeposit struct, clarify that each member refers to the total over the nu interaction
1 parent c8fcd07 commit bf14337

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

sbnanaobj/StandardRecord/SRTrueDeposit.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
namespace caf {
1414

1515
/**
16-
* @brief A struct to store true deposited energy, charge, and photons for each MCTruth interaction.
16+
* @brief A struct to store total true deposited energy, charge, and photons for each MCTruth interaction.
1717
*
1818
*/
1919
struct SRTrueDeposit {
20-
float electrons = caf::kSignalingNaN; ///< # of electrons at the site of energy deposition (after recombination, before drift)
21-
float photons = caf::kSignalingNaN; ///< # of photons at the site of energy deposition (after recombination, before propagation)
22-
float energy = caf::kSignalingNaN; ///< total **deposited energy** [GeV]
20+
float electrons = caf::kSignalingNaN; ///< total # of electrons from the sites of energy deposition, summed per nu interaction (after recombination, before drift)
21+
float photons = caf::kSignalingNaN; ///< total # of photons from the sites of energy deposition, summed per nu interaction (after recombination, before propagation)
22+
float energy = caf::kSignalingNaN; ///< total **deposited energy**, summed per nu interaction [GeV]
2323
};
2424
}
2525

0 commit comments

Comments
 (0)