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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846
|
\documentclass{report}
\usepackage{graphicx}
\oddsidemargin 0.0in
\evensidemargin 0.0in
\setlength{\unitlength}{1mm}
\textheight 8.75in
\textwidth 6.5in
\parskip 1.45ex
\begin{document}
\title{A Library of Function Objects}
\author{J. Boudreau, Mark Fischler, Petar Maksimovic}
\maketitle
\section{Why Function Objects?}
\noindent In many applications it is desireable to treat mathematical functions
as objects; the action of function-objects on their arguments and on
each other (in other words, their algebra) can be defined in C++ so
that it reflects the acutal mathematics, and instances of thes
functions can be applied flexibly at run time either to data
representing arugments or to other functions. Well-known use cases
include: plotting, data modelling, simulation, function approximation,
and integral transforms.
\noindent Using pointers-to-functions is a frequently used approach in either C or
FORTRAN which gives some run-time flexibility but not nearly the power of
function-objects. Using the native C math library we can write
\verb#sin(x)+exp(x)#, but we cannot write \verb#sin+exp# nor pass this
sum to other procedures. However, since we are free to overload operators
in C++, we can get around this shortcoming by endowing the abstract interface
to all function classes with all the operations we want our functions to
have. For clarity we have attempted to restrict this interface to
mathematically well defined operations, which will be discussed below. Another
way to view this design is as one in which the abstract interface to functions
permits the function library to be extended {\it not only through subclassing},
but also through ``composition''\footnote{here we mean composition in the
sense of obect composition not function composition}. We believe that the
composition of functions through arithmetic operations is simple and
intuitive since it is based on algebraic rules we've learned during childhood
and is expressed in the same natural language.
\noindent In addition, we want to control the shape of a function: when we fit a
function to data, for example. We can do so by possibly associating one or
more {\it parameters} to a function, such as amplitude or frequency, lifetime,
or width. This can be accomplished in C++ with parameter objects that can
be part of or composed together with the functions. Altering a parameter
alters the function or functions of which it is a component.
\noindent We have written a small class library (``GenericFunctions'') which implements
the features described above, for inclusion in the CLHEP project.
Although our class library does not contain a comprehensive set of functions
for mathematics and physics, it does provide an extensible framework for
developing such a library. At the present writing it contains:
\begin{itemize}
\item{An abstract base class for functions.}
\item{Classes representing parameters.}
\item{Arithmetic operations acting on both functions and parameters}
\item{Class representing a possibly multidimensional {\it argument} to
a function}
\item{A small set of implemented functions}
\end{itemize}
\section{A Word to the Wise}
\noindent Somebody told you once that C++ software is self-documenting. Being generally
a trusting individual, you believed this for a while. But now, you're not so
naive.
\noindent You're going to need documentation in order to make sense of the
Generic Functions library. {\it This} is the documentation you'll need.
There are a large number of classes here that you as a user don't need to
know about at all. The header files aren't encrypted so you can browse
them if you like, but you won't learn much that way. Read this documention
instead. Thank you.
\section{Example Application}
\noindent Our example application is a program to demonstrate the phenomena of
interference and diffraction. This standalone program should allow one
to control the width and separation of two slits in a filter, and also
the intensity of light from each of the slits. As we change the parameters
describing these variables we wish to see the {\it impulse function}, or
the intensity of light radiation at the position of the filter, change
in real time. Also we wish to simultaneously see the {\it response function}
or the intensity pattern on the far screen, change in a way that is controlled
by the same parameters. For this example, we are not going to worry about
how to display the function. Graphics are outside the scope of the Generic
Functions library. However just imagine that there is a plotter somewhere
that gets a function object \verb#f# and invokes the function-call operator
during plotting, like this:
\begin{verbatim}
double y = f(x); // f is a function object
\end{verbatim}
\noindent The construction of functions is more involved than their invocation, so we're
going to look at the code that sets up the functions and ties their shapes
to the four parameters listed above. This code is shown in
Example~\ref{ref:ExampleCode}, while screen shots from an application are shown
in Figs.~\ref{ref:WideOpen}, \ref{ref:PartiallyClosed}, and \ref{ref:TotallyClosed}.
\noindent Fig.~\ref{ref:WideOpen} shows both slits wide open and the classic double-slit
interference pattern on the screen. Fig.~\ref{ref:PartiallyClosed} shows the
the pattern when one of the slits is partially closed and the interference
fringes are less sharp, and Fig~\ref{ref:TotallyClosed} shows the one of the
slits fully closed. In this last case you can see that the interference pattern
has turned into a single-slit diffraction pattern.
\noindent We have two functions that need to be displayed: the impulse function and the
response function. Neither of these functions are part of the library {\it per
se}, but we can build them both out of the primitive functions \verb#Rectangular#
(for the impulse function) and \verb#Sin# and \verb#Cos# (for the response
function). which are in the library. The response function, by the way, is
given by the following expression:
\begin{displaymath}
I = \left[ A_0 \sin{ax/2}/(ax/2) \right ]^2 +
\left[ A_1 \sin{ax/2}/(ax/2) \right ]^2 +
2A_0A_1\left[\sin{ax/2}/(ax/2) \right ]^2 \cos{dx}
\end{displaymath}
where $x=\sin{\theta}$ and $a$ is equal to the slit widht in units of the wavelength,
$d$ is equal to the separation between the slits in units of the wavelength, and $A_0$
and $A_1$ are the amplitudes from the two slits. The functions we require are simple
enough to be built easily but complicated enough to illustrate several fundamental
features of the library.
\begin{figure}
\centerline{\makebox{\includegraphics{example.ps}}}
\caption{Example. Use of Generic Functions libary. See text for explanation.}
\label{ref:ExampleCode}
\end{figure}
\begin{figure}
\centerline{\makebox{\includegraphics{WideOpen.ps}}}
\caption{Picture of the example application which is discussed in the text.
Above, the impulse function shows both slots wide open. Each of the sliders
changes parameters and causes the plotter to update. Below, the response function
shows the classic two-slit interference pattern.}
\label{ref:WideOpen}
\end{figure}
\begin{figure}
\centerline{\makebox{\includegraphics{PartiallyClosed.ps}}}
\caption{The parameter values are now changed. All of the functions, both primitive
and derived, change their shape in response. Not that changing one parameter has
affected both functions.}
\label{ref:PartiallyClosed}
\end{figure}
\begin{figure}
\centerline{\makebox{\includegraphics{TotallyClosed.ps}}}
\caption{The second slit has been effectively closed, by setting the intensity
of light through this slit to zero. The two-slit interference pattern then
reduces to single-slit diffraction. This simple classroom demonstration program
can now be used as an aid in discussing optics or quantum mechanics, and can be
built in a few lines with a few minutes of programmer's time.}
\label{ref:TotallyClosed}
\end{figure}
\noindent The basic parameters of the model are the intensities of the two slits, the width
of the slits (this program does not allow the two slit widths to be varied independently)
and the separation. These parameters are set up in lines 1-4 of the example. The
variables corresponding to these parameters are called \verb#a1#, \verb#a2#, \verb#s#,
and \verb#d#.
\noindent However some parameters of the impulse and response functions do not conveniently map
onto these parameters but to simple combinations thereof. So, we can make derived parameters
out of the basic input parameters. A derived parameter is a \verb#GENPARAMETER#. This is
shown in lines 5-8 where derived parameters \verb#x0_0#, \verb#x0_1#, \verb#x1_0#,
\verb#x1_1# are defined in terms of input parameters.
\noindent The impulse function will be built out of two rectangular functions. So, we instantiate
these functions (Line 9), connect their internal parameters to the input parameters (Line 10-11)
and to the derived parameters (Lines 12-15). The input parameters are now referenced both
by the derived parameters and by functions and {\bf must not go out of scope} until the
functions and derived parameters are no longer needed.
\noindent Now, whenever we vary the external parameter we're going to change the shape of the function.
The two rectangular functions can be added to obtain the response function (Line 16). The sum of
the two functions maintains its connections to the controlling parameters. The four parameters
with variable names \verb#a1#, \verb#a2#, \verb#s#, and \verb#d# now not only control the
two rectangular functions, but also their sum.
\noindent In the next few lines we build the response function, which is
somewhat more involved. First we make instances of the functions
we're going to use (Lines 17-20). Among these functions is a function
\verb#x# of class \verb#Variable#, which just returns the value of its
argument. We multiply this function by the constant 0.5 and by the
Parameter \verb#s# to obtain a new function, \verb#alpha# in Line 21, and then
perform a similar set of operations to obtain a function
\verb#beta# in Line 22. A derived function is a GENFUNCTION. Our algebra is
defined on all of these data types. We also use functions of type
\verb#Square#, \verb#Sin#, and \verb#Cos#.
\noindent The composition of functions is indicated by parenthensis \verb#()#. The function \verb#square#
acts by squaring its argument. The function \verb#amplitude0# is a simple function of the
angular distance \verb#x#. So, the function which we naturally express as \verb#square(amplitude0)#
in Line 23, is the composition of the function \verb#square# with the function \verb#amplitude0#. In
this example, function composition is used again in lines 24-28.
\noindent In general, we have tried to design this library so that single dimensional functions,
multidimensional functions, double-precision constants and parameters all behave exactly
as expected. If you find that they don't, then report it to us. It's a flaw that we want
to fix. We have found no technical reason that functions, parameters, and constants cannot
be made to mirror quite closely a mathematical language.
\noindent After the impulse function and the response function have been defined they
can be passed around to other routines that may be written to the abstract interface
of all functions, \verb#AbsFunction#. This abstract interface allows one, essentially,
to evaluate the function using \verb#operator()(double x)# and to further compose it
with functions, scalars, and parameters. In this example the functions \verb#impulse#
and \verb#response# are passed on to some plotters. The shape of the function is controlled
by the parameters; changing the vlaue of a parameter changes all the shapes of all functions
that depend on it, both primitive and derived. In this example we have arranged things
so that the parameters are modified when the scale is moved, giving users a way to
control the shapes of both functions while seeing the visual representation of the
function respond in real time to the scale setting.
\section{Automatic derivatives}
Any function, whether simple or composite, one dimensional or multidimensional,
can return partial derivatives with respect to any argument. The computation is
done symbolically, in general, not numerically. In case an analytic derivative
is not available for any function, a numerical calculation is provided instead.
For one-dimensional functions, the derivative is returned using this method:
\begin{verbatim}
GENFUNCTION fprime = f.prime(); // F is a GENFUNCTION
\end{verbatim}
Partial derivatives of multidimensional functions with respect to one of their
arguments is taken up in section~\ref{section:multidimensional} below. Information
on whether the derivative of a particular function is analytic or not can be
obtained through the use of the method \verb+bool AbsFunction::hasAnalyticDerivative() const+.
\section{The AbsFunction Class}
\noindent The abstract base class for all functions of one or more dimensions is
\verb#AbsFunction#. The header file for this class also defines operations
on the class. The base class describes the essential behaviour of all
functions:
\begin{itemize}
\item{virtual double operator() (double) const = 0}
\item{virtual double operator() (const Argument \&) const = 0;}
\item{virtual unsigned int dimensionality() const;}
\item{virtual Derivative prime() const;}
\item{virtual bool hasAnalyticDerivative() const;}
\end{itemize}
It also defines a default constructor and a virtual destructor, and hides
the copy constructor and the default assignment operator. The data type
\verb+Derivative+ is an \verb+AbsFunction+, and may be handled like any other
\verb+AbsFunction+.
\section {Multidimensional Functions and Arguments}
\label{section:multidimensional}
\noindent Functions of more than one variable can be defined within this scheme.
The way this is handled is using the class \verb+Argument+, which essentially
is a vector-like list of double-precision numbers. The argument is
constructed using the integer number-of-dimensions; then each element
of the argument can be set using \verb#operator[](int i)#; for example:
\begin {verbatim}
Argument a(2);
a[0]=1.0;
a[1]=2.0;
cout << myFunction(a) << endl;
\end{verbatim}
\noindent Users should take care to pass to functions an argument of the right
dimensionality. Failure to do so will result in a run-time error.
In addition care should be excercised when operating on functions with
binary operations like addition or multiplication, that the functions
both operands has the same dimensionality. Otherwise, a run-time error
results.
\noindent In case of functions of a one-dimensional argument, one may either call
\begin{verbatim}
operator() (double) const
\end{verbatim}
or
\begin{verbatim}
operator() (const Argument &) const,
\end{verbatim}
and passing one-dimensional arguments only.
For multidimensional functions, one can obtain the partial derivative with respect
to any argument using the method \verb+virtual Derivative AbsFunction::partial( unsigned int i) const+. An alternate way to express this depends upon our ability to associate names
to components of a multidimensional argument, and is described in the next section.
\section {Variables}
The class \verb+Variable+ is the most elementary function. The function value it returns
is just the argument itself. It is useful because it can be used in function composition,
like this:
\begin{verbatim}
Sin sin;
Variable x;
GENFUNCTION f = sin(2.0*x);
\end{verbatim}
The class Variable can also be used to associate names with particular components of a
multidimensional argument, using the alternate form of the constructor, like this:
\begin{verbatim}
Variable x(0), y(1);
Genfunction f = cos(y)sin(x) + sin(x)cos(y);
\end{verbatim}
The function \verb+f+ is now a function of two variables. Alternately, the function may
be constructed from the direct product operator \verb+%+, see section~\ref{section:arithmetic}
below.
If \verb+v+ is a variable and \verb+f+ is a multidimensional function, we can express
the partial derivative of \verb+f+ with respect to the variable \verb+v+ like this:
\begin{verbatim}
GENFUNCTION fPartialV = f.partial(v);
\end{verbatim}
i.e. using the method \verb+virtual Derivative AbsFunction::partial( const Variable & v) const+.
\section{AbsParameters}
\noindent \verb#AbsParameter# is an abstract base class for simple parameter
classes representing double precision numbers. There are two main
types of \verb#AbsParameter#s. The first kind, simply called
\verb#Parameter#, comes with certain other services such as upper
limits, lower limits, and connections to other parameters. The other
kind is composite parameters, resulting from arithmetic operations on
parameters. For now we will discuss only the first kind, \verb#Parameter#.
Neither class is really intended to be extended any further by users.
\section{Parameters}
\noindent The first service that parameters perform is to provide limits: it is
impossible to set a parameter value outside of its limits--if this is
attempted the parameter value will be set to the maximum or minimum
allowed value.
\noindent Parameters can be made to take their value from other parameters. The
programmer sets this relationship through the \verb#connectFrom()# method,
as illustrated here:
\begin{verbatim}
Rectangular rect;
Parameter height("Height", 1.0, 0.5, 2.0);
rect.height().connectFrom(height);
\end{verbatim}
\noindent The first line creates a \verb#Rectangular# function. The second line
instantiates a parameter object called \verb#height# with name "Height", lower
and upper limits of 0.5 and 2 and a value of 1.0; The third line first
accesses the internal parameter \verb#height()# used by the function and
connects this function permanently to the parameter \verb#height#.
\noindent Functions allow access to their parameters. The shape of the function is
then determined in one of three ways:
\begin{itemize}
\item {The default value of the parameter can be taken.}
\item {The value of the parameter can be set to a new value.}
\item {The value of the parameter can be obtained from another parameter
(if the parameter is connected).}
\end{itemize}
\noindent When functions are used as arguments to arithmetic operations, and
their parameters are connected, the connections are maintained in the
composite function so created. However if a parameter in a function
is connected after the function has been used in creating a composite,
the composite function does not respond to changes in the value of the
connected parameter. Instead it has the value of the parameter at the
time it was created "frozen in.
\subsection {Parameter class interface}
\noindent Here is the public interface to the parameter class; the destructor,
copy constructor , and assignment operator are not included on this
list but are defined; the default constructor is not defined.
\begin{verbatim}
Constructors:
Parameter(std::string,
double,
double x0=-1e100,
double xl= 1e100);
Accessors:
const std::string & getName() const;
double getValue() const;
double getLowerLimit() const;
double getUpperLimit() const;
Modifiers:
void setValue(double);
void setLowerLimit(double lowerLimit);
void setUpperLimit(double upperLimit);
void connectFrom(Parameter *);
Print method:
std::ostream & operator << ( std::ostream &,
const Parameter &);
\end{verbatim}
\section {Arithmetic Operations}
\label{section:arithmetic}
\noindent The result of binary or unary arithmetic operation involving an
\verb#AbsFunction# is another \verb#AbsFunction#: however it is special kind of
\verb#AbsFunction#; generally the user will not care which kind since the
actual return type depends on the last operation to be evaluated in
the expression. The user needs to learn one trick, which is to handle
the result of the arithmetic operation through the base class. This
is demonstrated here where, we multiply an exponential with a cosine:
\begin{verbatim}
1 Exponential exp; // makes an exponential
2 Cos cosine; // make a cosine
3 AbsFunction & f = exp*cosine; // multiply the functions.
4 cout << f(5) << endl; // evaluate & print.
\end{verbatim}
\noindent The third line of this example is standard and safe. It generates a
function of class \verb#FunctionProduct#, which also has type
\verb#AbsFunction#. All operations on functions return
a value that has type \verb#AbsFunction#, although the class depends
on the actual operation, e.g. multiplication, division, et cetera. However the user does not care about which
{\it class} is returned, but only cares that the return value has {\it
type} \verb#AbsFunction#, because he or she should handles it through the
base class, \verb#AbsFunction#.
\noindent Another way of accomplishing the same thing is provided by the data
type \verb#GENFUNCTION#, typedef'd back to \verb#const AbsFunction &#. It allows
one to reexpress line 3 above in the following way:
\begin {verbatim}
GENFUNCTION f = exp*cos;
\end{verbatim}
\noindent You can use this syntax if you find it more natural. For
technically-minded people, the syntax generates a temporary object and
a reference thereto. In ANSI standard C++ the temporary is guaranteed
to persist until the refererence \verb#f# goes out of scope.
\noindent Most of the operations that are valid on functions are also valid on
parameters. Two parameters may be added, subtracted, multiplied, and
divided-to yield another parameter. As in the case of functions, the
return type of an operation yielding a parameter is an \verb#AbsParameter &#,
which is typedef'd as \verb#GENPARAMETER#, for example:
\begin{verbatim}
GENPARAMETER x_s = Delta_m/Gamma;
\end{verbatim}
where \verb#Delta_m# and \verb#Gamma# are both \verb#AbsParameters#. Finally, operations
between \verb#AbsFunctions#, \verb#AbsParameters#, and simple double precision
numbers (we'll call them constants) are also defined. Unary negation
is also defined on all of these data types.
\begin{table*}
\begin{center}
\begin{tabular}{|l|l|l|l|l|}
\hline
Symbol & Name & Operand 1 & Operand 2 & return type \\ \hline
+,-,* / & Simple & AbsFunction & AbsFunction & AbsFunction \\
& Arithmetic & AbsFunction & Constant & AbsFunction \\
& Operations & Constant & AbsFunction & AbsFunction \\
& & AbsFunction & AbsParameter & AbsFunction \\
& & AbsParameter& AbsFunction & AbsFunction \\
& & AbsParameter& AbsParameter & AbsParameter\\
& & Constant & AbsParameter & AbsParameter\\
& & AbsParameter& Constant & AbsParameter\\ \hline
unary - & Negation & AbsFunction & & AbsFunction \\
& & AbsParameter& & AbsParameter\\ \hline
() & Composition & AbsFunction & AbsFunction & AbsFunction \\
& & AbsFunction & AbsParameter & AbsParameter\\ \hline
\% & Direct Product & AbsFunction & AbsFunction & AbsFunction \\ \hline
convolve & Convolution & AbsFunction & AbsFunction & AbsFunction \\ \hline
\end{tabular}
\end{center}
\end{table*}
\noindent Three additional operations are defined for functions. The direct
product is for constructing multidimensional functions from
lower-dimensional functions. For example a multivariate gaussian
distribution of two uncorrelated variables could be built from two one
dimensional gaussians using the following syntax:
\begin{verbatim}
Gaussian f;
Gaussian g;
GENFUNCTION h = f%g;
\end{verbatim}
\noindent Mathematically, this is equivalent to $f(x)*g(y) = h(x,y)$. Some
multidimensional functions may be constructed from lower dimensional
functions but of course not all functions can be constructed this way.
Where it fails, one can still resort to inheritance and build the
needed function by subclassing \verb#AbsFunction#. The picture in
Fig.~\ref{ref:hydrogen} illustrates a multidimensional function obtained
by forming a three dimensional function from lower dimensional functions,
the illustration is the probability density function for a higher excited
state of hydrogen.
\begin{figure}
\centerline{\makebox{\includegraphics{hydrogen.ps}}}
\caption{Multidimensional functions can be expressed as a direct product
of lower dimensional functions; this example combines a Legendre Polynomial
with the product of an exponential, a power function and a Laguerre Polynomial
to obtain the probability density function of an electron in an excited state
of hydrogen. The dots are generated by performing a random throwaway against
a generic function of three dimensions.}
\label{ref:hydrogen}
\end{figure}
\noindent The composition operator is for taking functions of functions, or
functions of parameters. It is denoted with the function call
operator, \verb#()#. For example the following syntax is valid:
\begin {verbatim}
Exponential exponential;
Sin sine;
GENFUNCTION f = sine(exponential) ;
\end{verbatim}
\noindent A convolution of two functions has no special symbol-we ran out of
them- but is produced with the convolve method. This function
performs a numerical convolution of the two functions treating the
first function as a response function, the second as a resolution
function. The function has two addtional arguments, which are the
limits of the numerical convolution. The convolve function is then
used like this:
\begin{verbatim}
Exponential exp;
Gaussian gauss;
GENFUNCTION h = convolve(exp, gauss, -10.0, 10.0);
\end{verbatim}
\noindent The technique employed is to sample the product $f(x-y) g(y)$ at 200
points between $x0 < y < x1$, where $f$ is the response function and
$g$ is the resolution function. We hope to use Fourier techniques to
improve this method in due time.
\section{Some Functions in the library}
\noindent Several types of functions have been implemented in this scheme. A
table of those functions is shown here. Certain functions, such as
Legendre Polynomials, take arguments to their constructor that specify
the order of the polynomial. In other cases internal parameters
govern the shape of the function. The distinction is arbitrary at times,
since, for example, Bessel functions need not be of integral order.
In general we have preferred to leave parameters out of functions if
one can obtain the same result by other means, for example, objects
of class \verb#Sin# do not have a frequency parameter since one
can obtain this as follows:
\begin{verbatim}
Parameter freq (``freq'', 10.0);
Sin sine;
Variable x;
GENFUNCTION f = sine(freq*x);
\end{verbatim}
\begin{table*}
\begin{center}
\begin{tabular}{|l|l|l|}
\hline
Function & Name & Parameters \\ \hline
Variable & Returns its own input & \\ \hline
FixedConstant & Returns a constant & \\ \hline
Sqrt & Sqrt & \\ \hline
Square & Returns square of input & \\ \hline
Power & Returns a power of input & \\ \hline
Exp & Exponential & \\ \hline
Sin & Sine & \\ \hline
Cos & Cosine & \\ \hline
Tan & Tangent & \\ \hline
Ln & Natural Logarithm & \\ \hline
Erf & Error function & \\ \hline
ForwardExp & Forward Exponentail tail & decayConstant \\ \hline
ReverseExp & Reverse Exponential tail & decayConstant \\ \hline
LogGamma & Natural log of Gamma function & \\ \hline
IncompleteGamma & Incomplete Gamma Function & a \\ \hline
CumulativeChiSquare & Probability($\chi^2$) & \\ \hline
Gauss & Gaussian (Normal) distribution & mean \\
& & sigma \\ \hline
Landau & Landau distribution & peak \\
& & width \\ \hline
Rectangular & Rectangular function & x0 \\
& & x1 \\
& & baseline \\
& & height \\ \hline
PeriodicRectangular & Periodic rectangular & spacing \\
& & width \\
& & height \\ \hline
SphericalBessel & Spherical Bessel Functions & \\ \hline
SphericalNeumann & Spherical Neumann Function & \\ \hline
AssociatedLaguerre & Associated Laguerre Polynomial & \\ \hline
AssociatedLegendre & Associated Legendre Polynomial & \\ \hline
AnalyticConvolution & Moser-Roussarie convolutions & frequency \\
& & lifetime \\
& & resolution \\ \hline
IntegralOrder::Bessel & Bessel and Neumann functions & \\ \hline
FractionalOrder::Bessel & Bessel and Neumann functions & order \\ \hline
BivariateGaussian & Gaussian in 2 variables & mean0, mean1, \\
& & sigma0,sigma1, corr01 \\ \hline
TrivariateGaussian & Gaussian in 3 variables & mean[0-2],sigma[0-2] \\
& & corr[0-2][0-2] \\ \hline
\end{tabular}
\end{center}
\end{table*}
\section {Parameter to Argument Adaptors}
Parameters control the shape of a function, which then act in the space of their
arguments. In many applications it is useful to be able to create a new function
out of an existing function by treating one of its parameters as an argument.
A use case would be the following. Suppose that one has written a function to
describe a measured quantity, like lifetime, smeared with a resolution function
which is a Gaussian. The resulting function is parametrized by $\sigma$, the
width of the Gaussian distribution. However to use this function in an unbinned
log likelihood fit, we often need to incorporate event-by-event estimates of
$\sigma$. To do this is to formally promote the parameter $\sigma$ to an argument,
in other words to turn:
\begin {equation}
F(\alpha_i, \sigma; x)
\end {equation}
into
\begin{equation}
F(\alpha_i; \sigma, x)
\end{equation}
We do this using a helper class called \verb+ParamToArgAdaptor+. The class is an
\verb+AbsFunction+ that takes as arguments to its constructor:
\begin{itemize}
\item{The name of an auxilary function, whose parameter it is to promote.}
\item{The name of a member function of the auxilary function, which accesses the
parameter to promote.}
\end{itemize}
For example, one can turn a smeared expontial function of one variable into a
function of two variables, where the second variable is the event-per-event
error estimate.
\begin{verbatim}
Genfun::AnalyticConvolution smearedExponential (Genfun::AnalyticConvolution::SMEARED_EXP);
ParamToArgAdaptor<AnalyticConvolution> smExpEventByEvent(smearedExponential,
&AnalyticConvolution::sigma);
\end{verbatim}
The function \verb+smearedExponential+ is a function of one argument,
so the new function \verb+smExpEventByEvent+ is a function of 2
arguments. The last argument is the event-by-event resolution. Scale
factors may be added to the newly created function, so that the actual
value of the parameter used is some scale factor times the argument
provided. The scale factor is in fact a parameter of the adaptor
class, accessed via the method
\verb+scaleFactor+, and may be set or connected just like any other parameter.
In case two parameters need to be promoted along these lines, we provide an additional
class:
\begin{verbatim}
DoubleParamToArgAdaptor
\end{verbatim}
which differs from \verb+ParamToArgAdaptor+ only by
the presence of an additional argument to the constructor (the name of a member function
accessing the second parameter to be promoted) and the presence of a second parameter
(an additional scale factor).
\section {How to extend the Generic Functions package with your own function}
\noindent Creating a function for the Generic Function package or inserting an
existing function into the framework has low work overhead. Of course
if the function is complicated and hard to write, this the framework
does not make it easier! However there are only a small number of
steps involved in creating a one- or multi-dimensional function and
endowing it with parameters that control its shape. We present this
procedure as a checklist:
\begin{enumerate}
\item{Derive your function publically as a subclass of \verb#AbsFunction#.}
\item {What is the dimensionality of your function? If the answer is "one", then you
don't need to override the method
\begin{verbatim}
virtual unsigned int dimensionality() const;
\end{verbatim}
because the base class provides a default implementation which returns
the value 1. Otherwise, if your function has two or more dimensions,
you will need to override the method.}
\item {Which parameters (if any) does your function depend on? For
each parameter you need to add a \verb#Parameter# data member for that
parameter, and initialize it with its default value and range in the
constructor. Also you will want a way of getting a reference to the
parameter-and actually you will want two methods, overloaded on const.
The purpose of having both methods is so that you will get back a
parameter that you can modify if the function itself is modifiable,
and a read-only parameter if the function is readonly. If overloading
on const is strange to you, you can read up on it in Meyers; or you
can just adapt both of these example lines:
\begin{verbatim}
Parameter & parm();
const Parameter & parm() const;
\end{verbatim}
which shows, for example how to retrieve a parameter called "parm"
from a function. This is important and the compiler errors may appear
very mysterious if you don't write your parameter accessors this way.}
\item {You must provide an implementation of these two functions which
are pure abstract in the base class:
\begin{verbatim}
virtual double operator() (double) const;
virtual double operator() (const Argument &) const;
\end{verbatim}
These operators are what your function "does" so how you go about
doing this is your business. But typically, for one dimensional
functions the second form of the function just calls the first; while
for multidimensional functions the first form generates a run-time
error and the second form checks the dimension of the argument before
evaluating it.}
\item { The composition operator, \verb#operator()( const AbsFunction &)# is
overloaded in the base class and you don't want to hide it in the subclass,
so put the line \verb#using AbsFunction::operator()# in the header file
of your derived class.}
\item {Copy constructors are required for the proper operation of your
function within the framework. You can use the compiler-generated
copy of this constructor if you wish; the usual caveats about
dynamically allocated memory apply here as with any class. The
assignment operator is confusing because it only allows one to assign
Gaussians to Gaussians, exponentials to exponentials, et cetera, so
this function should be turned off. The way to do this is to a)
declare the assignment operator, b) make it private, and c) do not
provide an implementation.}
\item {You will need to declare and define the method:
\begin{verbatim}
virtual SubClass * clone() const;
\end{verbatim}
where \verb#SubClass# is your new class. This construction uses the
covariant return type mechanism, since the function in the base class
returns an \verb#AbsFunction *#. The purpose of the routine is of course to
return a pointer to a newly allocated object. The easiest way of
implementing this function is to use the copy constructor that you
wrote (if you wrote one, otherwise you can take the default copy
constructor that the compiler wrote for you).}
\item {{\bf Optional} If you will be providing an analytic derivative for your
new function, then override the method
\begin{verbatim}
Derivative partial (unsigned int) const;
\end{verbatim}
The function \verb+Sin+ provides a good example of how to do this. Should you
choose to provide an analytic derivative, you should also then override the
method
\begin{verbatim}
bool hasAnalyticDerivative() const
\end{verbatim}
so that it returns true. Our preference is to put the implementation right in
the header file since it provides useful information (``yes, this class has an
analtyic derivative'') for users. }
\end{enumerate}
\section {Cut classes}
GenericFunctions is based on our ability, in C++, to write classes
having the algebra of real functions of one or more variables. The
same techniques which have been applied here can be used to describe
other algebras. In particular, there is an extremely useful extension
to {\it cut classes}, which are objects that return a true or false
decision on some data type, and which support the algebra of boolean
operations. A set of base classes has been written to allow one to
create cuts on any data type, to combine them using the operators
\verb+||+, \verb+&&+ and! We have written these classes to
interoperate with with the standard template library.
A simple example will show the usefulness of this. In this example, the cut-object
\verb+IsPrime+ and \verb+IsInRange+ have been written as subclasses of \verb+Cut<int>+. In
the example we use these cuts to select prime numbers in the range 30-60, and print
out the result (31,37, 41, 43, 47, 53, 59) to the terminal screen:
\begin{verbatim}
int main(int, char **) {
//
// Make an array of integers:
//
const int LENGTH=100;
int integers[LENGTH];
//
// Fill them with the integers:
//
for (int i=0;i<LENGTH;i++) integers[i]=i;
//
// Make an output iterator:
//
std::ostream_iterator<int> dest(std::cout,"\n");
//
// Cut on prime numbers between 30 and 60:
//
const Cut<int>::Predicate cut = IsPrime() && IsInRange(30, 60);
std::remove_copy_if(integers, integers+LENGTH, dest, !cut);
//
// Bye:
//
return 0;
}
\end{verbatim}
Let's look in detail at how one of these cut objects was declared
(note that it inherits from \verb+Cut<int>+):
\begin{verbatim}
class IsPrime:public Cut<int> {
public:
// Constructor:
IsPrime();
// Destructor:
virtual ~IsPrime();
// Truth operator:
bool operator () (const int & arg) const;
// Clone
virtual IsPrime *clone() const;
};
\end{verbatim}
Readers familiar with the standard template library will ask, ``How does
this relate to STL predicate types? What has been gained, and what has
been the cost?'' One has gained the ability to combine existing cut-objects
with boolean operations. The cost has been: some virtual function calls
in the evaluation of these objects, and the necessity of inheriting from
\verb+Cut<Type>+, meaning also that two pure virtual functions:
\begin{itemize}
\item{\verb+virtual Cut * clone() const = 0;+ }
\item{\verb+virtual bool operator ()( const Type & t ) const = 0;+}
\end{itemize}
will have to be defined by the user.
Unlike the function-objects, we do not provide any concrete cut-objects. Instead
what we provide is the base classes that allow one to easily write STL predicates
supporting boolean operations\footnote{To be sure, the STL has a set of classes that
allow one to combine cuts using boolean operations, but their interface
is appalling.} To access these, include the header file \verb+CLHEP/GenericFunctions/TrackCutBase.hh+.
\end{document}
|