1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
/*******************************************************************************
*
* McXtrace, x-ray tracing package
* Copyright, All rights reserved
* DTU Physics, Kgs. Lyngby, Denmark
* Synchrotron SOLEIL, Saint-Aubin, France
*
* Component: PSD_monitor_4PI
*
* %Identification
* Written by: Erik Knudsen
* Date: June 23rd, 2009
* Origin: Risoe
* Release: McXtrace 0.1
*
* Spherical position-sensitive detector.
*
* %Description
* Based on neutron component by Kim Lefmann and Kristian Nielsen
* An (n times m) pixel spherical PSD monitor using a cylindrical projection.
* Mostly for test and debugging purposes.
*
* Example: PSD_monitor_4PI(radius=0.1,
* nx=90, ny=90, filename="Output.psd")
*
* %Parameters
* INPUT PARAMETERS:
* radius: [m] Radius of detector
* nx: [1] Number of pixel columns
* ny: [1] Number of pixel rows
* filename: [str] Name of file in which to store the detector image
* restore_xray: [1] If set, the monitor does not influence the xray state
*
* CALCULATED PARAMETERS:
*
* PSD_N: Array of xray counts
* PSD_p: Array of xray weight counts
* PSD_p2: Array of second moments
*
* %End
*******************************************************************************/
DEFINE COMPONENT PSD_monitor_4PI
SETTING PARAMETERS (radius=1, restore_xray=0, int nx=90, int ny=90, string filename=0)
DECLARE
%{
DArray2d PSD_N;
DArray2d PSD_p;
DArray2d PSD_p2;
%}
INITIALIZE
%{
int i,j;
PSD_N = create_darr2d(nx, ny);
PSD_p = create_darr2d(nx, ny);
PSD_p2 = create_darr2d(nx, ny);
// Use instance name for monitor output if no input was given
if (!strcmp(filename,"\0")) sprintf(filename,"%s",NAME_CURRENT_COMP);
%}
TRACE
%{
double l0, l1, psi, theta;
int i,j;
if(sphere_intersect(&l0, &l1, x, y, z, kx, ky, kz, radius) && l1 > 0)
{
if(l0 < 0)
l0 = l1;
/* l0 is the intersection length with the sphere. */
PROP_DL(l0);
psi = atan2(x,z);
i = floor(nx*(psi/(2*PI)+0.5));
if(i >= nx)
i = nx-1; /* Special case for psi = PI. */
else if(i < 0)
i = 0;
theta=asin(y/radius);
j = floor(ny*(theta+PI/2)/PI+0.5);
if(j >= ny)
j = ny-1; /* Special case for y = radius. */
else if(j < 0)
j = 0;
double p2 = p*p;
#pragma acc atomic
PSD_N[i][j] = PSD_N[i][j]+1 ;
#pragma acc atomic
PSD_p[i][j] = PSD_p[i][j] + p;
#pragma acc atomic
PSD_p2[i][j] = PSD_p2[i][j] + p2;
SCATTER;
}
if (restore_xray) {
RESTORE_XRAY(INDEX_CURRENT_COMP, x, y, z, kx, ky, kz, phi, t, Ex, Ey, Ez, p);
}
%}
SAVE
%{
DETECTOR_OUT_2D(
"4PI PSD monitor",
"Longitude [deg]",
"Lattitude [deg]",
-180, 180, -90, 90,
nx, ny,
&PSD_N[0][0],&PSD_p[0][0],&PSD_p2[0][0],
filename);
%}
FINALLY
%{
destroy_darr2d(PSD_N);
destroy_darr2d(PSD_p);
destroy_darr2d(PSD_p2);
%}
MCDISPLAY
%{
circle("xy",0,0,0,radius);
circle("xz",0,0,0,radius);
circle("yz",0,0,0,radius);
%}
END
|