Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #ifndef GAM2_PROCESS_GV08_H
0002 #define GAM2_PROCESS_GV08_H
0003 
0004 /**
0005  * @file GAM2ProcessGPSSW21.h
0006  * @author Hervé MOUTARDE (SPhN / CEA Saclay)
0007  * @version 1.0
0008  *
0009  * @date 25-09-2015 (Bryan BERTHOU) : refactoring
0010  */
0011 
0012 #include <string>
0013 
0014 #include "../../../utils/type/PhysicalType.h"
0015 #include "GAM2ProcessModule.h"
0016 
0017 namespace PARTONS {
0018 
0019 /**
0020  * @class GAM2ProcessGPSSW21
0021  *
0022  * Module for the GAM2 process using arXiv:2110.00048 set of formulas.
0023  */
0024 class GAM2ProcessGPSSW21: public GAM2ProcessModule {
0025 public:
0026     static const unsigned int classId; ///< Unique ID to automatically register the class in the registry.
0027 
0028     /**
0029      * Constructor.
0030      * See BaseObject::BaseObject and ModuleObject::ModuleObject for more details.
0031      *
0032      * @param className name of child class.
0033      */
0034     GAM2ProcessGPSSW21(const std::string &className);
0035 
0036     /**
0037      * Default destructor.
0038      */
0039     virtual ~GAM2ProcessGPSSW21();
0040 
0041     virtual GAM2ProcessGPSSW21* clone() const;
0042 
0043 protected:
0044 
0045     /**
0046      * Copy constructor.
0047      */
0048     GAM2ProcessGPSSW21(const GAM2ProcessGPSSW21& other);
0049 
0050     virtual void initModule();
0051     virtual void isModuleWellConfigured();
0052 
0053     virtual PhysicalType<double> CrossSection();
0054 
0055 private:
0056 
0057 };
0058 
0059 } /* namespace PARTONS */
0060 
0061 #endif /* GAM2_PROCESS_GV08_H */
0062