Skip to content

Commit e983083

Browse files
Merge pull request #51 from sindhu-ku/neutrino_info
fix trackid variable name in stringstream
2 parents b246f85 + 8fce748 commit e983083

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

larcv/core/DataFormat/Neutrino.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace larcv {
1313
{
1414
std::stringstream ss;
1515
std::stringstream buf;
16-
ss << " \033[95m" << "Neutrino " << " (PdgCode,TrackID) = (" << pdg_code() << "," << track_id() << ")\033[00m " << std::endl;
16+
ss << " \033[95m" << "Neutrino " << " (PdgCode,TrackID) = (" << pdg_code() << "," << nu_track_id() << ")\033[00m " << std::endl;
1717
buf << " ";
1818

1919
ss << buf.str() << "Vertex (x, y, z, t) = (" << x() << "," << y() << "," << z() << "," << t() << ")" << std::endl

0 commit comments

Comments
 (0)