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