Bug #1437
Tracker station numbering bug
Start date:
24 March 2014
Due date:
% Done:
100%
Estimated time:
Workflow:
New Issue
Description
Looking through scifi trackpoints in a sample Json file (attached), noticed that the station numbering goes from 0-5, so there is obviously an error there somewhere.
Files
Updated by Pidcott, Celeste over 9 years ago
Bug found in SciFiTrackPoints.cc, problem was at line 53 where station number was set by (cluster) id/3, however id is an int that runs from 1-15, so in the case of 1 and 2 it is returning a station of 0, and in other cases the station is sometimes being set as 1 less than it should be. Changing the line to _station = ((id-1)/3)+1 fixes the issue. Adam has applied the change in the tracker branch.
Updated by Dobbs, Adam over 9 years ago
- Assignee changed from Santos, Edward to Dobbs, Adam
Fixed in tracker branch, waiting for merge to trunk.
Updated by Rajaram, Durga over 9 years ago
- Status changed from Open to Closed
- % Done changed from 0 to 100