//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Cluster Finding in the TPC: // ClusterFinder administrating SectorProcessors // // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Sebastian Neubert TUM (original author) // // //----------------------------------------------------------- #ifndef TPCCLUSTERFINDER_HH #define TPCCLUSTERFINDER_HH // Base Class Headers ---------------- // Collaborating Class Headers ------- #include #include //#include "PndTpcDigi.h" //#include "PndTpcCluster.h" #include "PndTpcAbsClusterFinder.h" // Collaborating Class Declarations -- class PndTpcPadPlane; class padprocessor; class PndTpcSectorProcessor; class PndTpcDigi; class PndTpcCluster; class PndTpcClusterFinder : public PndTpcAbsClusterFinder{ public: // Constructors/Destructors --------- PndTpcClusterFinder(PndTpcPadPlane* p, std::vector* output_buffer, unsigned int timeslice); ~PndTpcClusterFinder(); // Operators // Accessors ----------------------- // Modifiers ----------------------- // Operations ---------------------- virtual void process(std::vector& digis); virtual void reset(); virtual void checkConsistency(); private: void putDigi(PndTpcDigi* digi); // Private Data Members ------------ std::map _sproc; PndTpcPadPlane* _padplane; std::vector* _output_buffer; unsigned int _dt; // time slice in units of sample time // Private Methods ----------------- }; #endif //-------------------------------------------------------------- // $Log$ //--------------------------------------------------------------