Back to home page

EIC code displayed by LXR

 
 

    


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

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