Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Elemer Nagy
athena
Commits
535737d4
Commit
535737d4
authored
7 years ago
by
Dave Casper
Browse files
Options
Downloads
Patches
Plain Diff
Add new interface for track density helper tool
Former-commit-id: 275b8d4e47cef05435fffbd31410b10940cf744e
parent
40a8b8f1
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
Tracking/TrkVertexFitter/TrkVertexFitterInterfaces/TrkVertexFitterInterfaces/IVertexTrackDensityEstimator.h
+83
-0
83 additions, 0 deletions
.../TrkVertexFitterInterfaces/IVertexTrackDensityEstimator.h
with
83 additions
and
0 deletions
Tracking/TrkVertexFitter/TrkVertexFitterInterfaces/TrkVertexFitterInterfaces/IVertexTrackDensityEstimator.h
0 → 100755
+
83
−
0
View file @
535737d4
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
///////////////////////////////////////////////////////////////////
// IVertexTrackDensityEstimator.h, (c) ATLAS Detector software 2018
///////////////////////////////////////////////////////////////////
#ifndef TRKVERTEXFITTERINTERFACE_IVERTEXTRACKDENSITYESTIMATOR_H
#define TRKVERTEXFITTERINTERFACE_IVERTEXTRACKDENSITYESTIMATOR_H
#include
"GaudiKernel/IAlgTool.h"
#include
"TrkParameters/TrackParameters.h"
/**
* @class Trk::IVertexTrackDensityEstimator
*
* An abstract base class for implementation of
* weight functions for seeding. Calculates the
* the density of tracks at a given point along
* the beamline given a set of tracks.
*
*@author Dave Casper (dcasper@uci.edu)
*
* --------------------------------------------------------
*/
namespace
Trk
{
class
Track
;
static
const
InterfaceID
IID_IVertexTrackDensityEstimator
(
"IVertexTrackDensityEstimator"
,
1
,
0
);
class
IVertexTrackDensityEstimator
:
virtual
public
IAlgTool
{
public:
/**
* Virtual destructor
*/
virtual
~
IVertexTrackDensityEstimator
()
{};
/**
* AlgTool interface methods
*/
static
const
InterfaceID
&
interfaceID
()
{
return
IID_IVertexTrackDensityEstimator
;
};
/**
* Adds a list of tracks, whose impact parameters will contribute to the density function.
*/
virtual
void
addTracks
(
const
std
::
vector
<
const
Trk
::
Track
*>&
vectorTrk
)
=
0
;
/**
* Adds a list of track perigee parameters, whose impact parameters will contribute to
* the density function.
*/
virtual
void
addTracks
(
const
std
::
vector
<
const
Trk
::
TrackParameters
*>&
perigeeList
)
=
0
;
/**
* Removes a list of tracks, which will no longer contribute to the density function.
*/
virtual
void
removeTracks
(
const
std
::
vector
<
const
Trk
::
Track
*>&
vectorTrk
)
=
0
;
/**
* Removes a list of track perigee parameters, which will no longer contribute to
* the density function.
*/
virtual
void
removeTracks
(
const
std
::
vector
<
const
Trk
::
TrackParameters
*>&
perigeeList
)
=
0
;
/**
* Evaluate the density function at the specified coordinate along the beam-line.
*/
virtual
double
trackDensity
(
double
z
)
=
0
;
/**
* Resets the internal state of the tool, forgetting all tracks previously added.
*/
virtual
void
reset
()
=
0
;
};
}
#endif
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