Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GenFit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eic_tools
GenFit
Commits
0cd951d5
Unverified
Commit
0cd951d5
authored
6 years ago
by
Tadeas Bilka
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add documentation and make class abstract
Added description to the method and made the class abstract
parent
b3421a12
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
GBL/include/GblTrackSegmentController.h
+9
-3
9 additions, 3 deletions
GBL/include/GblTrackSegmentController.h
with
9 additions
and
3 deletions
GBL/include/GblTrackSegmentController.h
+
9
−
3
View file @
0cd951d5
...
...
@@ -45,9 +45,15 @@ namespace genfit {
virtual
~
GblTrackSegmentController
()
{};
virtual
GblTrackSegmentController
*
clone
()
const
{
return
new
GblTrackSegmentController
(
*
this
);}
virtual
void
controlTrackSegment
(
TVector3
,
TVector3
,
double
,
GblFitter
*
)
{;}
/**
* @brief Function called for each segment of trajectory. User can decide on MS options.
* This function must be implemented by the actual class deriving from this abstract class
* @param entry Position of segment starting point
* @param exit Position of segment ending point
* @param scatTheta Total MS variance accumulated in this segment
* @param fitter Pointer to the fitter - so you can set the MS options
*/
virtual
void
controlTrackSegment
(
TVector3
entry
,
TVector3
exit
,
double
scatTheta
,
GblFitter
*
fitter
)
=
0
;
virtual
void
Print
(
const
Option_t
*
=
""
)
const
{;}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment