Skip to content

Commit

Permalink
Add missing variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
kkrizka authored and tmadlener committed May 8, 2024
1 parent a6bae79 commit c295718
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/cpp/src/SIO/SIOTrackHandler.cc
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ namespace SIO {
for( int i=0 ; i<nHitNumbers ; i++ ) {
SIO_DATA( device , &(trk->_subdetectorHitNumbers[i] ), 1 ) ;
}
int nHoleNumbers ;
SIO_DATA( device, &nHoleNumbers , 1 ) ;
trk->subdetectorHoleNumbers().resize( nHoleNumbers ) ;
for( int i=0 ; i<nHoleNumbers ; i++ ) {
SIO_DATA( device , &(trk->_subdetectorHoleNumbers[i] ), 1 ) ;
Expand Down

0 comments on commit c295718

Please sign in to comment.