/******************************************************************************* * * McStas, neutron ray-tracing package * Copyright 1997-2002, All rights reserved * Risoe National Laboratory, Roskilde, Denmark * Institut Laue Langevin, Grenoble, France * * Component: E_monitor * * %I * Written by: Kristian Nielsen and Kim Lefmann * Date: April 20, 1998 * Version: $Revision: 1.24 $ * Origin: Risoe * Release: McStas 1.6 * * Energy-sensitive monitor. * * %D * A square single monitor that measures the energy of the incoming neutrons. * * Example: E_monitor(xmin=-0.1, xmax=0.1, ymin=-0.1, ymax=0.1, * Emin=1, Emax=50, nchan=20, filename="Output.nrj") * * %P * INPUT PARAMETERS: * * xmin: Lower x bound of detector opening (m) * xmax: Upper x bound of detector opening (m) * ymin: Lower y bound of detector opening (m) * ymax: Upper y bound of detector opening (m) * xwidth: Width/diameter of detector (x). Overrides xmin,xmax. (m) * yheight: Height of detector (y). Overrides ymin,ymax. (m) * Emin: Minimum energy to detect (meV) * Emax: Maximum energy to detect (meV) * nchan: Number of energy channels (1) * filename: Name of file in which to store the detector image (text) * * OUTPUT PARAMETERS: * * E_N: Array of neutron counts * E_p: Array of neutron weight counts * E_p2: Array of second moments * S_p: Sum of neutron weight counts * S_pE: Sum of weighted energies * S_pE2: Sum of weighted energy squared * * %E *******************************************************************************/ DEFINE COMPONENT E_monitor DEFINITION PARAMETERS (nchan=20, filename) SETTING PARAMETERS (xmin=0, xmax=0, ymin=0, ymax=0, xwidth=0, yheight=0, Emin, Emax) OUTPUT PARAMETERS (E_N, E_p, E_p2, S_p, S_pE, S_pE2) STATE PARAMETERS (x,y,z,vx,vy,vz,t,s1,s2,p) DECLARE %{ double E_N[nchan]; double E_p[nchan], E_p2[nchan]; double S_p, S_pE, S_pE2; %} INITIALIZE %{ int i; if (xwidth > 0) { xmax = xwidth/2; xmin = -xmax; } if (yheight > 0) { ymax = yheight/2; ymin = -ymax; } if ((xmin >= xmax) || (ymin >= ymax)) { printf("E_monitor: %s: Null detection area !\n" "ERROR (xwidth,yheight,xmin,xmax,ymin,ymax). Exiting", NAME_CURRENT_COMP); exit(0); } for (i=0; ixmin && xymin && y= 0 && i < nchan) { E_N[i]++; E_p[i] += p; E_p2[i] += p*p; SCATTER; } } %} SAVE %{ DETECTOR_OUT_1D( "Energy monitor", "Energy [meV]", "Intensity", "E", Emin, Emax, nchan, &E_N[0],&E_p[0],&E_p2[0], filename); if (S_p) printf(" : %g meV , E-width : %g meV \n", S_pE/S_p,sqrt(S_pE2/S_p - S_pE*S_pE/(S_p*S_p)) ); %} MCDISPLAY %{ magnify("xy"); 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