File indexing completed on 2026-06-02 08:51:48
0001 #ifndef GAM2_XI_CONVERTER_XB_TO_XI_H
0002 #define GAM2_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 "GAM2XiConverterModule.h"
0015
0016 namespace PARTONS {
0017
0018
0019
0020
0021
0022
0023
0024
0025 class GAM2XiConverterExact: public GAM2XiConverterModule {
0026
0027 public:
0028
0029
0030
0031
0032 static const unsigned int classId;
0033
0034
0035
0036
0037
0038 GAM2XiConverterExact(const std::string &className);
0039
0040
0041
0042
0043
0044 GAM2XiConverterExact(const GAM2XiConverterExact &other);
0045
0046
0047
0048
0049 virtual ~GAM2XiConverterExact();
0050
0051 virtual GAM2XiConverterExact* clone() const;
0052 virtual PhysicalType<double> compute(
0053 const GAM2ObservableKinematic& kinematic);
0054 };
0055
0056 }
0057
0058 #endif