File indexing completed on 2025-01-18 09:54:34
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef _EfficiencyFunctional_h_
0010 #define _EfficiencyFunctional_h_
0011 #include "CLHEP/GenericFunctions/AbsFunctional.hh"
0012 #include "CLHEP/GenericFunctions/ArgumentList.hh"
0013
0014 namespace Genfun {
0015
0016
0017
0018
0019
0020 class EfficiencyFunctional:public AbsFunctional {
0021
0022 public:
0023
0024
0025 EfficiencyFunctional(const ArgumentList & aList);
0026
0027
0028 ~EfficiencyFunctional();
0029
0030
0031 virtual double operator [] (const AbsFunction & function) const;
0032
0033 private:
0034
0035 const ArgumentList _aList;
0036
0037 };
0038 }
0039 #endif