// ************************************************************************** /** @mainpage @brief FACT++ - The FACT slow control software @author thomas.bretz@epfl.ch et al. @version 1.0 @section install_sec Installation FACT++ can be downloaded from the svn by \verbatim svn checkout https://fact.isdc.unige.ch/svn/trunk/FACT++ [localdir] \endverbatim it includes a dim version which is automatically compiled. For compilation use \verbatim ./configure make \endverbatim Check the \b ./configure options with \b --help. It might look confusing, but some features like FITS or QT4 can be switched off, if the necessary library is not at hand and the feature is not needed. For example, if the GUI is not needed its compilation can be switched off by disabling QT4 support with \b --without-qt4. If you use a custom built root version on your system without QT support, but have a distribution packe (e.g. debian package) with QT support available, you can give the path to root executables, for example, with --with-rootsys=/usr/bin. All other paths are extracted from subsequent calls to \b root-config. Running \b ./configure will take some time. It tries to really check carefully that everything needed is available on your system, so that you get errors before you start compilation. If \b ./configure fails please and you send a bug report please attach the file config.log. If \b make fails please and you send a bug report please attach the complete output of make V=1. \b Reminder: These programs use shared libraries, i.e. whenever you re-compile part of the project some of them might be re-compiled as well. As a result already running programs might crash unexpectedly! This is \b not a bug. In principle configure also supports \verbatim make install \endverbatim which would install the package and the libraries in your system, although at the moment this is not recommended @subsection packages Required packages The following section gives a list of packages which were necessary after a fresh Ubuntu 11.04 installation. In addition to all the development packages the corresponding package with the library is needed. Required - subversion - gcc - g++ - make - libreadline6-dev - libcfitsio3-dev - libccfits-dev - libmysqlclient-dev - libmysql++-dev - libboost-all-dev - libx11-dev If you want 'did' - lesstif2-dev To compile the gui - libqt4-dev - root (see section about root, currently recommended versions 5.18/00b-5.26/00e) To create your own documentation - graphviz - doxygen - help2man For developers - autoconf - autoconf-archive - libtool - qt4-designer Some nice to have (FACT++) - colorsvn - colorgcc - colordiff Some nice to have (system) - fte - efte - htop @section How to install root 5.26/00 on Ubuntu 11.04 (natty) - install gpp4.4, gcc4.4, g++4.4 (root does not compile with gcc4.5) - make links to hidden X11 libraries:
cd /usr/local
sudo ln -s x86_64-linux-gnu/libX* .
- in the root source directory
./configure --enable-qt --with-cc=gcc-4.4 --with-cxx=g++-4.4 --with-xrootd-opts=--syslibs=/usr/lib/x86_64-linux-gnu --prefix=/usr/local
- \b make - sudo make install - pray - don't forget to set LD_LIBRARY_PATH correctly before you try to start the fact gui @section Demo Current demonstration programs - \b dserver2: A virtual board (A TCP/IP server). It is sending a "hello" message after accepting a communication and then in 3s intervals the current UTC time. The board can be set to state 1 or back to state 0 (just as a demonstration) - \b dclient5: A control program. It accesses two viratual boards (start them with 'dserver2 5000' and 'dserver2 4001') If both boards are connected the START command can be issued to get them to state 'Running'. In this state an asynchronous time stamp can be requested sending the TIME command. to get back from Running to Connected use STOP. - \b test3: a dim console which allows to control all dim servers by sending commands via the dim network. - Both, \b dclient5 and \b test3 accept the command line options -c0, -c1, -c2 to switch between different console types (or no console in the case of \b dclient5). In the console you get help with 'h' and the available command with 'c' You get the avilable command-line options with --help First start the two dserver2s. Then start a dclient5 (if you want it with console use one of the -c options) and a test3 console (with one of the console options if you like) you can now control the hardware boards with the START, STOP and TIME commands or stop (Ctrl-C) and start one of the programs to see what's happening. In the test3 case you first have to \e cd to the server to which you want to talk by \b DATA_LOGGER. Don't forget to start \b dns if you want to control dclient5 from test3 via Dim. @section dimremarks Remarks about Dim usage To be able to write all received data directly to the FITS files, padding has been disabled calling dic_diable_padding() and dis_disable_padding(). This is done in our own error handler DimErrorRedirecter. Since this should be one of the first objects created in any environment it is quite save. However, every Dim client or server in our network which does not use the DimErrorRedirecter \b must call these two functions as early as possible. @section exitcodes Exit Code @section newcommand How to add a new command? @section description How to add help textes to services and commands? @section addtab How to add a new tab in the gui? Do the following steps in exactly this order: - Insert the new page from the context menu of the QTabWidget - Copy the QDockWidget from one of the other tabs to the clipboard - Paste the copied QDockWidget and add it to the new tab (only the tab should be highlited) - Now click on the context menu of the region in the tab (QWidget) and change the layout to grid layout @section Documentation Each program has an extensive help text (except the examples). This help text can be displayed with the \b --help option. For each program a man-page is automatically created (from the help-output), which (at the moment) can be accessed with man FILE. @section References @subsection generalref General references - The C++ reference - boost.org: The boost C++ libraries - Boris Schäling: Die Boost C++ Bibliotheken - GNU Readline - GNU Ncurses - Distributed Information Management (DIM) - Distributed Information Management (DIM) - C++ reference - Qt homepage - Qt downloads @subsection boostref Boost references - boost::bind (V1.45.0) - boost asio (V1.45.0) - boost date_time (V1.45.0) - boost program_options (V1.45.0) - boost filesystem (V1.45.0) - boost regex (V1.45.0) - boost system (error codes) (V1.45.0) - boost thread (V1.45.0) - boost lexical_cast (V1.45.0) @subsection fitsref FITS references - The FITS data format - FITS homepage - CCfits - A C++ wrapper to cfitsio - fv - A very simple viewer to FITS file contents @subsection qtroot How to integrate root in QT? - QT4: Creating custom widgets - root: QT integration (pdf) @section Available programs - dns: Dim's domain-name-server (needed for any communication between Dim servers and clients) - did: A simple graphical interface to analyse everything in a Dim network @section Examples There are a few example programs - \b ./argv: Example for usage of the class Configure (command line options, configuration file) - \b ./time: Example for the usage of the class Time (time input/output, conversion) - \b ./log, \b ./logtime: A simple Dim-Service/-Client combination using MessageDimRX/MessageDimTX **/ // **************************************************************************