Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions mcxtrace-comps/union/Compton_xrl_process.comp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ DEFINE COMPONENT Compton_xrl_process
DEFINITION PARAMETERS ()
SETTING PARAMETERS (density=0,atomno=14, string element="", string init="init")
OUTPUT PARAMETERS (This_process,Compton_xrl_storage)
DEPENDENCY "-lxrl"
DEPENDENCY " @XRLFLAGS@ "
/* X-ray parameters: (x,y,z,kx,ky,kz,phi,t,Ex,Ey,Ez,p) */

SHARE
Expand All @@ -65,14 +65,7 @@ SHARE

#endif

/* If on windows this should likely be set like this
* since xraylib.h is not (as a standard) installed
* into an xraylib subdir*/
#ifdef _WIN32
#include <xraylib.h>
#else
#include <xraylib/xraylib.h>
#endif

struct Compton_xrl_physics_storage_struct{
char name[13];
Expand Down
9 changes: 1 addition & 8 deletions mcxtrace-comps/union/KN_xrl_process.comp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ DEFINE COMPONENT KN_xrl_process
DEFINITION PARAMETERS ()
SETTING PARAMETERS (density=0, string init="init")
OUTPUT PARAMETERS (This_process,KN_xrl_storage)
DEPENDENCY "-lxrl"
DEPENDENCY " @XRLFLAGS@ "
/* X-ray parameters: (x,y,z,kx,ky,kz,phi,t,Ex,Ey,Ez,p) */

SHARE
Expand All @@ -62,14 +62,7 @@ SHARE

#endif

/* If on windows this should likely be set like this
* since xraylib.h is not (as a standard) installed
* into an xraylib subdir*/
#ifdef _WIN32
#include <xraylib.h>
#else
#include <xraylib/xraylib.h>
#endif

struct KN_xrl_physics_storage_struct{
char name[13];
Expand Down
9 changes: 1 addition & 8 deletions mcxtrace-comps/union/Rayleigh_xrl_process.comp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ DEFINE COMPONENT Rayleigh_xrl_process
DEFINITION PARAMETERS ()
SETTING PARAMETERS (density=0,atomno=14, string element="", string init="init")
OUTPUT PARAMETERS (This_process,Rayleigh_xrl_storage)
DEPENDENCY "-lxrl"
DEPENDENCY " @XRLFLAGS@ "
/* X-ray parameters: (x,y,z,kx,ky,kz,phi,t,Ex,Ey,Ez,p) */

SHARE
Expand All @@ -64,14 +64,7 @@ SHARE

#endif

/* If on windows this should likely be set like this
* since xraylib.h is not (as a standard) installed
* into an xraylib subdir*/
#ifdef _WIN32
#include <xraylib.h>
#else
#include <xraylib/xraylib.h>
#endif

struct Rayleigh_xrl_physics_storage_struct{
char name[13];
Expand Down
1 change: 0 additions & 1 deletion mcxtrace-comps/union/Union_master.comp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ SETTING PARAMETERS(verbal = 1,
inherit_number_of_scattering_events=0,
string init="init")
OUTPUT PARAMETERS ()
DEPENDENCY "-I@MCCODE_LIB@/share/"
NOACC

/* X-ray parameters: (x,y,z,kx,ky,kz,t,phi,Ex,Ey,Ez,p) */
Expand Down
Loading