1 | README for the plugins directory/
|
---|
2 | ---------------------------------
|
---|
3 |
|
---|
4 | This directory contains plugins that allow one to use certain cone
|
---|
5 | jet-finders within the fastjet framework.
|
---|
6 |
|
---|
7 | For instructions on how to build and use plugins, see the main fastjet
|
---|
8 | documentation. For documentation on specific plugins, see the plugin
|
---|
9 | header files which contain extensive information.
|
---|
10 |
|
---|
11 | PxCone/
|
---|
12 | contains the pxcone code and the associated plugin; note that
|
---|
13 | since pxcone is in fortran, when linking with this plugin it
|
---|
14 | is necessary to link also with fortran libraries, and the
|
---|
15 | variable that provides the options for this F77LIB is defined
|
---|
16 | in ../Makefile.
|
---|
17 | ****
|
---|
18 | The user should have defined beforehand the environment
|
---|
19 | variable G77LIBDIR which points to the directory containing
|
---|
20 | the libg2c.a library.
|
---|
21 | The command
|
---|
22 | locate libg2c.a | head -1 | sed 's/\/[^\/]*$//' or
|
---|
23 | dirname `locate libg2c.a | head -1`
|
---|
24 | might help in locating such a directory.
|
---|
25 | Alternatively, uncomment the G77LIBDIR line in ../Makefile
|
---|
26 | ****
|
---|
27 |
|
---|
28 | CDFCones/
|
---|
29 | contains CDF's code for their jetclu and midpoint jet finders
|
---|
30 | (actually in the CDFcode subdirectory), as well as the
|
---|
31 | associated plugins.
|
---|
32 |
|
---|
33 |
|
---|
34 | usage_examples/
|
---|
35 | some programs to illustrate use of individual plugins as well
|
---|
36 | as several jet finders together. To run these programs, you
|
---|
37 | should first:
|
---|
38 |
|
---|
39 | - build fastjet (see instructions in parent directory)
|
---|
40 | - build the plugins:
|
---|
41 | make
|
---|
42 | (if you just want a subset of plugins just go to the
|
---|
43 | relevant directory and build what you need).
|
---|
44 |
|
---|
45 | - then build an example program and then run it
|
---|
46 | cd usage_examples
|
---|
47 | make
|
---|
48 | ./many_algs_example < data/single-event.dat
|
---|
49 |
|
---|
50 |
|
---|
51 |
|
---|
52 |
|
---|