File indexing completed on 2026-06-02 08:51:45
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef GPD_SUBTRACTION_CONSTANT_KM10_H
0009 #define GPD_SUBTRACTION_CONSTANT_KM10_H
0010
0011 #include <string>
0012
0013 #include "../../utils/type/PhysicalType.h"
0014 #include "GPDSubtractionConstantModule.h"
0015
0016 namespace PARTONS {
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027 class GPDSubtractionConstantKM10: public GPDSubtractionConstantModule {
0028
0029 public:
0030
0031
0032
0033
0034 static const unsigned int classId;
0035
0036
0037
0038
0039
0040 GPDSubtractionConstantKM10(const std::string &className);
0041
0042
0043
0044
0045 virtual ~GPDSubtractionConstantKM10();
0046
0047 virtual GPDSubtractionConstantKM10* clone() const;
0048
0049 protected:
0050
0051
0052
0053
0054 GPDSubtractionConstantKM10(const GPDSubtractionConstantKM10& other);
0055
0056 virtual PhysicalType<double> computeSubtractionConstant();
0057
0058 private:
0059
0060 double m_par_H_C;
0061 double m_par_H_M_sub;
0062 };
0063
0064 }
0065
0066 #endif