Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

FlatProcessor.h

Go to the documentation of this file.
00001 #ifndef FASTSHOWER_FLATPROCESSOR_H
00002 #define FASTSHOWER_FLATPROCESSOR_H
00003 
00004 namespace FastShower{
00012   class FlatProcessor: public IDistProcessor{
00013   public:
00016     FlatProcessor(double lower, double upper):
00017       m_lowerLimit(lower),
00018       m_upperLimit(upper){}
00019 
00021     virtual double process(double) const;
00022   private:
00023     double m_lowerLimit;
00024     double m_upperLimit;
00025   };
00026 }
00027 #endif

Generated on Tue Mar 18 11:49:56 2003 for FastShowerUtils by doxygen1.3-rc1