Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #ifndef DVMP_CONVOL_COEFF_FUNCTION_RESULT_H
0002 #define DVMP_CONVOL_COEFF_FUNCTION_RESULT_H
0003 
0004 /**
0005  * @file DVMPConvolCoeffFunctionResult.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 "DVMPConvolCoeffFunctionKinematic.h"
0013 
0014 namespace PARTONS {
0015 
0016 /**
0017  * @class DVMPConvolCoeffFunctionResult
0018  *
0019  * @brief Class representing single result of DVMP CFF computation.
0020  *
0021  * This class is used to store results of a single DVMP CCF computation.
0022  */
0023 class DVMPConvolCoeffFunctionResult: public ConvolCoeffFunctionResult<
0024         DVMPConvolCoeffFunctionKinematic> {
0025 
0026 public:
0027 
0028     /**
0029      * Default constructor.
0030      */
0031     DVMPConvolCoeffFunctionResult();
0032 
0033     /**
0034      * Assignment constructor.
0035      * @param kinematic DVMP CCF kinematics to be assigned.
0036      */
0037     DVMPConvolCoeffFunctionResult(
0038             const DVMPConvolCoeffFunctionKinematic& kinematic);
0039 
0040     /**
0041      * Copy constructor.
0042      * @param other Object to be copied.
0043      */
0044     DVMPConvolCoeffFunctionResult(const DVMPConvolCoeffFunctionResult& other);
0045 
0046     /**
0047      * Destructor.
0048      */
0049     virtual ~DVMPConvolCoeffFunctionResult();
0050 };
0051 
0052 } /* namespace PARTONS */
0053 
0054 #endif /* DVMP_CONVOL_COEFF_FUNCTION_RESULT_H */