Changes between Version 4 and Version 5 of InstallingEventViewer
- Timestamp:
- 11/10/18 21:54:36 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallingEventViewer
v4 v5 1 1 The [https://www.fact-project.org/viewer/ Event Viewer] is a tool which allows to display raw data and manipulate raw data from a web browser. It is ideal to develop new algorithms without recompiling any code or writing a new framework. The disadvantage is that it is quite tedious to install. Here are some instructions. 2 2 3 = = Requirements ==3 = Requirements = 4 4 5 5 == PHP == … … 89 89 If you get an error that V8Js is not properly installed, you might need to create a file `php.ini` with the following contents 90 90 {{{ 91 extens tion=v8js.so91 extension=v8js.so 92 92 }}} 93 93 … … 139 139 [5] sudo service apache2 reload 140 140 }}} 141 142 = Event Viewer = 143 144 To setup the event viewer, you have to provide the paths to `getevent` (part of FACT++) and to your data in `index.php`. Add that in the following lines (the paths are just an example and should be replaced with the correct paths on your system): 145 146 {{{#!php 147 $getevent = "/home/user/FACT++/build/getevent"; 148 149 $path = array( 150 "cal" => "/home/user/data/", 151 "raw" => "/home/user/data/", 152 "mc" => "/home/user/data/", 153 ); 154 }}} 155 156 As Monte Carlo and Calibrated data needs special preparation, you will only want to look at raw data. You can just put the same path three times.