//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Local Distortions (Gaussian profile) // // // Environment: // Software developed for a real experiment // // Author List: // Felix Boehmer (original author) // Physik Department E18, TUM // //----------------------------------------------------------- #ifndef ABSMMDISTORTION_HH #define ABSMMDISTORTION_HH #include #include "TpcCluster.h" //is needed in all subclasses anyway class AbsTpcMMDistortion { public: AbsTpcMMDistortion() {;} virtual ~AbsTpcMMDistortion() {;} virtual void distort(const std::vector& cls) = 0; protected: }; #endif