////////////////////////////////////////////////////////////////////// /// (C)opyright 2004 /// /// Institute of Computer Science V /// Prof. Männer /// University of Mannheim, Germany /// /// ******************************************************************* /// /// Designer(s): Steinle /// /// ******************************************************************* /// /// Project: Trackfinder for CBM-Project at GSI-Darmstadt, Germany /// /// ******************************************************************* /// /// Description: /// /// class: /// - abstract class for all filter methods for /// maxMorphSearch /// /// ******************************************************************* /// /// $Author: csteinle $ /// $Date: 2008-08-14 12:35:34 $ /// $Revision: 1.2 $ /// ////////////////////////////////////////////////////////////////////// #ifndef _FILTERDIMXDIMXDIMX_H #define _FILTERDIMXDIMXDIMX_H #include "filterDimXDimX.h" /* ************************************************************** * CLASS filterDimXDimXDimX * * **************************************************************/ class filterDimXDimXDimX : public filterDimXDimX { protected: unsigned short filterSize3; /**< Variable to store the size of the filter in the third dimension. */ public: /** * Default constructor */ filterDimXDimXDimX(); /** * Constructor * @param histogram is an object for accessing the histogram * @param size1 is the filtersize in the first dimension * @param size2 is the filtersize in the second dimension * @param size3 is the filtersize in the third dimension * @param size is the complete size of the area of the filter * @param localSize is the complete size of the area of the local filter */ filterDimXDimXDimX( histogramData** histogram, unsigned short size1, unsigned short size2, unsigned short size3, unsigned short size, unsigned short localSize); /** * Default destructor */ virtual ~filterDimXDimXDimX(); /** * This method initializes the object. * @param histogram is an object for accessing the histogram * @param size1 is the filtersize in the first dimension * @param size2 is the filtersize in the second dimension * @param size3 is the filtersize in the third dimension * @param size is the complete size of the area of the filter * @param localSize is the complete size of the area of the local filter */ void init( histogramData** histogram, unsigned short size1, unsigned short size2, unsigned short size3, unsigned short size, unsigned short localSize); }; #endif