00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef ParameterQuotient_h
00011 #define ParameterQuotient_h 1
00012 #include "CLHEP/GenericFunctions/AbsParameter.hh"
00013 namespace Genfun {
00014
00019 class ParameterQuotient : public AbsParameter {
00020
00021 PARAMETER_OBJECT_DEF(ParameterQuotient)
00022
00023 public:
00024
00025
00026 ParameterQuotient(const AbsParameter *arg1, const AbsParameter *arg2);
00027
00028
00029 ParameterQuotient(const ParameterQuotient &right);
00030
00031
00032 virtual ~ParameterQuotient();
00033
00034
00035 virtual double getValue() const;
00036
00037 private:
00038
00039
00040 const ParameterQuotient & operator=(const ParameterQuotient &right);
00041
00042 AbsParameter *_arg1;
00043 AbsParameter *_arg2;
00044 };
00045 }
00046 #endif