File: PSD_TOF_monitor.comp

package info (click to toggle)
mccode 3.5.19%2Bds5-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,113,256 kB
  • sloc: ansic: 40,697; python: 25,137; yacc: 8,438; sh: 5,405; javascript: 4,596; lex: 1,632; cpp: 742; perl: 296; lisp: 273; makefile: 226; fortran: 132
file content (183 lines) | stat: -rw-r--r-- 4,955 bytes parent folder | download
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/*******************************************************************************
*
* McStas, neutron ray-tracing package
*         Copyright 1997-2002, All rights reserved
*         Risoe National Laboratory, Roskilde, Denmark
*         Institut Laue Langevin, Grenoble, France
*
* Component: PSD_TOF_monitor
*
* %I
* Written by: Peter Willendrup, derived from PSD_monitor by Kim Lefmann
* Date: Feb 3, 1998
* Origin: Risoe
*
* Position-sensitive monitor with TOF slices.
*
* %D
* An (nx times ny) pixel PSD monitor with nt time bins pr pixel.
*
* Will output nt PSD images plus 1 integrated image.
*
* Example: PSD_TOF_monitor(xmin=-0.1, xmax=0.1, ymin=-0.1, ymax=0.1, nx=90, ny=90, tmin=4000, tmax=7000, nt=3, filename="Output")
*
* %P
* INPUT PARAMETERS:
*
* xmin: [m]             Lower x bound of detector opening
* xmax: [m]             Upper x bound of detector opening
* ymin: [m]             Lower y bound of detector opening
* ymax: [m]             Upper y bound of detector opening
* tmin: [mu-s]          Lower time bound
* tmax: [mu-s]          Upper time bound
* xwidth: [m]           Width/diameter of detector (x). Overrides xmin, xmax
* yheight: [m]          Height of detector (y). Overrides ymin, ymax
* nx: [1]               Number of pixel columns
* ny: [1]               Number of pixel rows
* nt: [1]               Number of TOF bins
* filename: [string]    Name of file in which to store the detector image
* restore_neutron: [1]  If set, the monitor does not influence the neutron state
* nowritefile: [1]      If set, monitor will skip writing to disk
*
* CALCULATED PARAMETERS:
*
* PSD_N: []             Array of neutron counts
* PSD_p: []             Array of neutron weight counts
* PSD_p2: []            Array of second moments
*
* %E
*******************************************************************************/

DEFINE COMPONENT PSD_TOF_monitor

SETTING PARAMETERS (int nx=90, int ny=90, int nt=10, int restore_neutron=0,
		    string filename=0, xmin=0, xmax=0, ymin=0, ymax=0, xwidth=0, yheight=0,
		    tmin=0, tmax=0, int nowritefile=0)


DECLARE
%{
  DArray3d PSD_N;
  DArray3d PSD_p;
  DArray3d PSD_p2;

  DArray2d PSD_Ns;
  DArray2d PSD_ps;
  DArray2d PSD_p2s;
%}

INITIALIZE
%{
  if (xwidth  > 0) { xmax = xwidth/2;  xmin = -xmax; }
  if (yheight > 0) { ymax = yheight/2; ymin = -ymax; }

  if ((xmin >= xmax) || (ymin >= ymax)) {
          printf("PSD_TOF_monitor: %s: Null detection area !\n"
                 "ERROR        (xwidth,yheight,xmin,xmax,ymin,ymax). Exiting",
         NAME_CURRENT_COMP);
    exit(0);
  }

  if (tmin >= tmax) {
    printf("PSD_TOF_monitor: %s: Unmeaningful TOF definition!\n",
     NAME_CURRENT_COMP);
    exit(0);
  }

  PSD_N = create_darr3d(nt, nx, ny);
  PSD_p = create_darr3d(nt, nx, ny);
  PSD_p2 = create_darr3d(nt, nx, ny);

  PSD_Ns = create_darr2d(nx, ny);
  PSD_ps = create_darr2d(nx, ny);
  PSD_p2s = 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
%{
  int i, j, k;

  PROP_Z0;
  if (x>xmin && x<xmax && y>ymin && y<ymax && (1E6*t)>tmin && (1E6*t)<tmax)
  {
    i = floor((x - xmin)*nx/(xmax - xmin));
    j = floor((y - ymin)*ny/(ymax - ymin));
    k = floor((1E6*t - tmin)*nt/(tmax - tmin));

    double p2 = p*p;
    #pragma acc atomic    
    PSD_N[k][i][j] = PSD_N[k][i][j]+1;
    #pragma acc atomic
    PSD_p[k][i][j] = PSD_p[k][i][j]+p;
    #pragma acc atomic    
    PSD_p2[k][i][j] = PSD_p2[k][i][j]+p2;

    #pragma acc atomic
    PSD_Ns[i][j] = PSD_Ns[i][j]+1;
    #pragma acc atomic
    PSD_ps[i][j] = PSD_ps[i][j]+p;
    #pragma acc atomic    
    PSD_p2s[i][j] = PSD_p2s[i][j]+p2;

    SCATTER;
  }
  if (restore_neutron) {
    RESTORE_NEUTRON(INDEX_CURRENT_COMP, x, y, z, vx, vy, vz, t, sx, sy, sz, p);
  }
%}

SAVE
%{
if (!nowritefile) {
  int kk;
  char ff[256];
  char tt[256];
  sprintf(ff, "%s_Sum",filename);
  DETECTOR_OUT_2D(
	 "PSD monitor TOF Sum",
    "X position [cm]",
    "Y position [cm]",
    xmin*100.0, xmax*100.0, ymin*100.0, ymax*100.0,
    nx, ny,
    &PSD_Ns[0][0],&PSD_ps[0][0],&PSD_p2s[0][0],
    ff);

  for (kk=0; kk<nt; kk++) {
    sprintf(ff, "%s_%i",filename,kk);
    sprintf(tt, "PSD monitor TOF slice %i ~ %g mu-s",kk,kk*(tmax-tmin)/nt);
    DETECTOR_OUT_2D(
      tt,
      "X position [cm]",
      "Y position [cm]",
      xmin*100.0, xmax*100.0, ymin*100.0, ymax*100.0,
      nx, ny,
      &PSD_N[kk][0][0],&PSD_p[kk][0][0],&PSD_p2[kk][0][0],
      ff);
  }
}
%}

FINALLY
%{
  destroy_darr3d(PSD_N);
  destroy_darr3d(PSD_p);
  destroy_darr3d(PSD_p2);

  destroy_darr2d(PSD_Ns);
  destroy_darr2d(PSD_ps);
  destroy_darr2d(PSD_p2s);
%}

MCDISPLAY
%{
  multiline(5, (double)xmin, (double)ymin, 0.0,
               (double)xmax, (double)ymin, 0.0,
               (double)xmax, (double)ymax, 0.0,
               (double)xmin, (double)ymax, 0.0,
               (double)xmin, (double)ymin, 0.0);
%}

END