Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-06-02 08:51:42

0001 #ifndef DDVCS_CONVOL_COEFF_FUNCTION_RESULT_H
0002 #define DDVCS_CONVOL_COEFF_FUNCTION_RESULT_H
0003 
0004 /**
0005  * @file DDVCSConvolCoeffFunctionResult.h
0006  * @author Bryan BERTHOU (SPhN / CEA Saclay)
0007  * @date 22 July 2015
0008  * @version 1.0
0009  */
0010 
0011 #include "../ConvolCoeffFunctionResult.h"
0012 #include "DDVCSConvolCoeffFunctionKinematic.h"
0013 
0014 namespace PARTONS {
0015 
0016 /**
0017  * @class DDVCSConvolCoeffFunctionResult
0018  *
0019  * @brief Class representing single result of DDVCS CFF computation.
0020  *
0021  * This class is used to store results of a single DDVCS CCF computation.
0022  */
0023 class DDVCSConvolCoeffFunctionResult: public ConvolCoeffFunctionResult<
0024         DDVCSConvolCoeffFunctionKinematic> {
0025 
0026 public:
0027 
0028     /**
0029      * Default constructor.
0030      */
0031     DDVCSConvolCoeffFunctionResult();
0032 
0033     /**
0034      * Assignment constructor.
0035      * @param kinematic DDVCS CCF kinematics to be assigned.
0036      */
0037     DDVCSConvolCoeffFunctionResult(
0038             const DDVCSConvolCoeffFunctionKinematic& kinematic);
0039 
0040     /**
0041      * Copy constructor.
0042      * @param other Object to be copied.
0043      */
0044     DDVCSConvolCoeffFunctionResult(const DDVCSConvolCoeffFunctionResult& other);
0045 
0046     /**
0047      * Destructor.
0048      */
0049     virtual ~DDVCSConvolCoeffFunctionResult();
0050 };
0051 
0052 } /* namespace PARTONS */
0053 
0054 #endif /* DDVCS_CONVOL_COEFF_FUNCTION_RESULT_H */