Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions sbnanaobj/StandardRecord/SRTrueCaloPoint.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ namespace caf
SRTrueCaloPoint::SRTrueCaloPoint():
h_nelec(std::numeric_limits<float>::signaling_NaN()),
h_e(std::numeric_limits<float>::signaling_NaN()),
h_nelec_sed(std::numeric_limits<float>::signaling_NaN()),
h_e_sed(std::numeric_limits<float>::signaling_NaN()),
p_nelec(std::numeric_limits<float>::signaling_NaN()),
p_e(std::numeric_limits<float>::signaling_NaN()),
x(std::numeric_limits<float>::signaling_NaN()),
Expand Down
2 changes: 2 additions & 0 deletions sbnanaobj/StandardRecord/SRTrueCaloPoint.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ namespace caf

float h_nelec; //!< Charge / number of electrons by hit
float h_e; //!< Energy by hit [MeV]
float h_nelec_sed; //!< number of electrons from simEnergyDeposit (sed) in wire z +- (wire spacig) / 2, for sed overlapping with the boarder, overlaping fraction is multiplied
float h_e_sed; //!< deposited energy [MeV] from simEnergyDeposit (sed) in wire z +- (wire spacig) / 2, for sed overlapping with the boarder, overlaping fraction is multiplied
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Couple of typos in the comments: spacig-->spacing and boarder-->border

float p_nelec; //!< Charge / number of electrons by particle
float p_e; //!< Energy by particle [MeV]
float x; //!< X-Position of deposition by particle [cm]
Expand Down
3 changes: 2 additions & 1 deletion sbnanaobj/StandardRecord/classes_def.xml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@
<![CDATA[{ energy = onfile.energy; }]]>
</ioread>

<class name="caf::SRTrueCaloPoint" ClassVersion="10">
<class name="caf::SRTrueCaloPoint" ClassVersion="11">
<version ClassVersion="11" checksum="3867618625"/>
<version ClassVersion="10" checksum="4052698249"/>
</class>

Expand Down