Back to home page

EIC code displayed by LXR

 
 

    


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  * @file TCSProcessBDP01.h
0006  * @author Oskar Grocholski
0007  * @date 14 September 2018
0008  * @version 1.0
0009  */
0010 
0011 #include <string>
0012 
0013 #include "../../../utils/type/PhysicalType.h"
0014 #include "TCSProcessModule.h"
0015 
0016 namespace PARTONS {
0017 
0018 /**
0019  * @class TCSProcessBDP01
0020  *
0021  * Short description.
0022  *
0023  * Long description.
0024  * Source paper: Timelike Compton scattering: exclusive photoproduction of lepton pairs
0025  * arXiv:hep-ph/0110062v1
0026  */
0027 class TCSProcessBDP01: public TCSProcessModule {
0028 
0029 public:
0030 
0031     static const unsigned int classId; ///< Unique ID to automatically register the class in the registry.
0032 
0033     /**
0034      * Constructor.
0035      * See BaseObject::BaseObject and ModuleObject::ModuleObject for more details.
0036      * @param className name of child class.
0037      */
0038     TCSProcessBDP01(const std::string &className);
0039 
0040     /**
0041      * Destructor.
0042      */
0043     virtual ~TCSProcessBDP01();
0044 
0045     virtual TCSProcessBDP01* clone() const;
0046 
0047 protected:
0048 
0049     /**
0050      * Copy constructor.
0051      * @param other Object to be copied.
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 } /* namespace PARTONS */
0064 
0065 #endif /* TCS_PROCESS_BDP01_H */