-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProcessesWrapper.cpp
More file actions
16 lines (14 loc) · 793 Bytes
/
ProcessesWrapper.cpp
File metadata and controls
16 lines (14 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//=============================================================================
// NOLI SE TANGERE
#include "CepGen/Event/Event.h"
#include "CepGen/Modules/ProcessFactory.h"
#include "CepGen/Process/FortranFactorisedProcess.h"
#include "CepGen/Utils/RandomGenerator.h"
//=============================================================================
//=============================================================================
// MAP name -> Fortran matrix element evaluation function
// usage:
// REGISTER_FORTRAN_PROCESS(name, "description", function_name);
// with the Fortran function name written in lowercase (NO trailing '_')
//=============================================================================
REGISTER_FORTRAN_PROCESS(dummy, "A dummy Fortran process", dummy_process);