Back to home page

EIC code displayed by LXR

 
 

    


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

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