File indexing completed on 2026-06-02 08:51:48
0001 #ifndef TCS_PROCESS_BDP01_H
0002 #define TCS_PROCESS_BDP01_H
0003
0004
0005
0006
0007
0008
0009
0010
0011 #include <string>
0012
0013 #include "../../../utils/type/PhysicalType.h"
0014 #include "TCSProcessModule.h"
0015
0016 namespace PARTONS {
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027 class TCSProcessBDP01: public TCSProcessModule {
0028
0029 public:
0030
0031 static const unsigned int classId;
0032
0033
0034
0035
0036
0037
0038 TCSProcessBDP01(const std::string &className);
0039
0040
0041
0042
0043 virtual ~TCSProcessBDP01();
0044
0045 virtual TCSProcessBDP01* clone() const;
0046
0047 protected:
0048
0049
0050
0051
0052
0053 TCSProcessBDP01(const TCSProcessBDP01& other);
0054
0055 virtual void initModule();
0056 virtual void isModuleWellConfigured();
0057
0058 virtual PhysicalType<double> CrossSectionBH();
0059 virtual PhysicalType<double> CrossSectionVCS();
0060 virtual PhysicalType<double> CrossSectionInterf();
0061 };
0062
0063 }
0064
0065 #endif