Skip to content
Snippets Groups Projects
Commit ed4b9499 authored by Andy Haas's avatar Andy Haas
Browse files

cleaned up a bit

Former-commit-id: 699c85db
parent 72fc03b8
No related branches found
No related tags found
No related merge requests found
......@@ -4,20 +4,9 @@
#ifndef __IFTK_DUPLICATETRACKREMOVAL_TOOL_H__
#define __IFTK_DUPLICATETRACKREMOVAL_TOOL_H__
#include "GaudiKernel/IAlgTool.h"
//#include "AthenaKernel/IOVSvcDefs.h"
class VxContainer;
#include "TrigFTK_RawData/FTK_RawTrack.h"
#include "GaudiKernel/IAlgTool.h"
#include "TrigFTK_RawData/FTK_RawTrackContainer.h"
#include "xAODTracking/VertexFwd.h"
//#include "xAODTracking/TrackParticleFwd.h"
#include "xAODTracking/VertexContainerFwd.h"
#include "xAODTracking/VertexAuxContainer.h"
#include "TrkTrack/TrackCollection.h"
//#include "xAODTracking/TrackParticleContainerFwd.h"
//namespace Trk {
//// class Track;
//}
static const InterfaceID IID_IFTK_DuplicateTrackRemovalTool("IFTK_DuplicateTrackRemovalTool",1,0);
class IFTK_DuplicateTrackRemovalTool : virtual public IAlgTool {
......@@ -30,6 +19,7 @@ class IFTK_DuplicateTrackRemovalTool : virtual public IAlgTool {
virtual FTK_RawTrackContainer* removeDuplicates(const FTK_RawTrackContainer* trks) = 0;
private:
};
#endif
......@@ -30,7 +30,6 @@ class FTK_DuplicateTrackRemovalTool : public AthAlgTool, virtual public IFTK_Dup
FTK_RawTrackContainer* removeDuplicates(const FTK_RawTrackContainer* trks);
private:
FTK_RawTrackContainer* m_trks_nodups;
ToolHandle<IFTK_UncertaintyTool> m_uncertaintyTool;
bool match(const FTK_RawTrack* track, const FTK_RawTrack* oldtrack) const;
const FTK_RawTrack* besttrack(const FTK_RawTrack* track, const FTK_RawTrack* oldtrack) const;
int m_HW_ndiff;
......
......@@ -12,11 +12,9 @@ FTK_DuplicateTrackRemovalTool::FTK_DuplicateTrackRemovalTool(const std::string&
const IInterface* p ):
AthAlgTool(t,n,p),
m_trks_nodups(NULL),
m_uncertaintyTool("FTK_UncertaintyTool",this),
m_HW_ndiff(6)
{
declareInterface< IFTK_DuplicateTrackRemovalTool >( this );
declareProperty( "UncertaintyTool", m_uncertaintyTool);
declareProperty("HW_ndiff",m_HW_ndiff);
}
......
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