Skip to content

Commit

Permalink
Added delete instruction to free memory
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Lenzi committed Mar 7, 2015
1 parent 7302834 commit d811a6f
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -32,7 +32,9 @@ namespace cms {
clusterizer_ = new Phase2TrackerClusterizerAlgorithm(maxClusterSize_, maxNumberClusters_);
}

Phase2TrackerClusterizer::~Phase2TrackerClusterizer() { }
Phase2TrackerClusterizer::~Phase2TrackerClusterizer() {
delete clusterizer_;
}

/*
* Clusterize the events
Expand Down

0 comments on commit d811a6f

Please sign in to comment.