1 // Larbin
2 // Sebastien Ailleret
3 // 07-12-01 -> 10-12-01
4 
5 /* This is the file you should change if you want to
6  * use the data fetched by larbin.
7  *
8  * See useroutput.h for the interface
9  *
10  * See the files XXXuserouput.cc for examples */
11 
12 #include "options.h"
13 
14 #ifdef SIMPLE_SAVE
15 #include "interf/saveuseroutput.cc"
16 
17 #elif defined(MIRROR_SAVE)
18 #include "interf/mirrorsaveuseroutput.cc"
19 
20 #elif defined(STATS_OUTPUT)
21 #include "interf/statsuseroutput.cc"
22 
23 #else // DEFAULT_OUTPUT
24 #include "interf/defaultuseroutput.cc"
25 
26 #endif
27