#ifndef TRIPLETS_FINDER_H_ #define TRIPLETS_FINDER_H_ /** @file triplet-finder.h header for triplet finder algorithm */ #include #include "data.h" #include "global-ctx.h" #include "track.h" #include "triplet.h" #include "util.h" #include "vec.h" using namespace std; // forward references class TripletFinderOptions; /** the class that implements the triplet finder algorithm */ class TripletFinder { public: /** create triplet finder with options */ TripletFinder(const TripletFinderOptions &opts); /** destructor */ ~TripletFinder(); private: }; // class TripletFinder #endif