-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Iss883 #888
Conversation
pbutti
commented
Sep 8, 2021
- Added front-back fitting of tracks with KF
- Fixes to KF pattern reco
…cut; fixed error causing same track candidate to be found several times in some cases; fixed some debug format errors; added lots of debugging code for studying this issue
Just a quick tip based on scanning your code: If you want your comments to show up as documentation in the javadoc attached to classes and methods then enclose them like this:
Double-slash comments will not:
Non-javadoc style is more appropriate for internal comments within methods. Just mentioning this because you have some documentation-style comments on classes and methods but they will be stripped out if someone is looking at the online javadoc and won't be visible at all there. |
Also, a few more stylistic nitpicks: We don't typically prepend underscores in Java code like this within this codebase:
Instead to clearly denote a class variable you can just use And here you may want to extract some of these hard-coded numbers out into constants:
You can then change them easily in one spot and their meaning becomes much clearer to anyone reading the code. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've not done an in-depth review, but all tests pass.
Please proceed.