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