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
0006
0007
0008
0009
0010
0011
0012 #include <string>
0013
0014 #include "../../../utils/type/PhysicalType.h"
0015 #include "GAM2ProcessModule.h"
0016
0017 namespace PARTONS {
0018
0019
0020
0021
0022
0023
0024 class GAM2ProcessGPSSW21: public GAM2ProcessModule {
0025 public:
0026 static const unsigned int classId;
0027
0028
0029
0030
0031
0032
0033
0034 GAM2ProcessGPSSW21(const std::string &className);
0035
0036
0037
0038
0039 virtual ~GAM2ProcessGPSSW21();
0040
0041 virtual GAM2ProcessGPSSW21* clone() const;
0042
0043 protected:
0044
0045
0046
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 }
0060
0061 #endif
0062