Skip to content
Snippets Groups Projects
Commit c482203e authored by Katherine Pachal's avatar Katherine Pachal
Browse files

Merge branch '21.1-dev-duffs' into '21.1-dev'

Remove unused variables

See merge request atlas/athena!13777

Former-commit-id: 9301b5c4efbb2a159b052401c107cd3021e802d4
parents 73d7f9b0 3d9c5150
No related branches found
No related tags found
No related merge requests found
......@@ -48,16 +48,17 @@ void Analysis_Distribution::initialise() {
void Analysis_Distribution::execute(const std::vector<TIDA::Track*>& referenceTracks,
const std::vector<TIDA::Track*>& testTracks,
void Analysis_Distribution::execute(const std::vector<TIDA::Track*>& /*referenceTracks*/,
const std::vector<TIDA::Track*>& testTracks,
TrackAssociator* /*associator*/) {
// Loop over test tracks
std::vector<TIDA::Track*>::const_iterator test, testEnd=testTracks.end();
std::vector<TIDA::Track*>::const_iterator ref, refEnd=referenceTracks.end();
for(test=testTracks.begin(); test!=testEnd; test++) {
std::vector<TIDA::Track*>::const_iterator test=testTracks.begin();
std::vector<TIDA::Track*>::const_iterator testEnd=testTracks.end();
for ( ; test!=testEnd ; test++ ) {
// Get test parameters
double testEta = (*test)->eta();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment