Changes between Version 3 and Version 4 of MCNLO_compilation
- Timestamp:
- Aug 5, 2015, 3:06:05 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MCNLO_compilation
v3 v4 6 6 2. export fastjet_config=None # if you use fjcore otherwise put the path to fasjet-config file 7 7 3. unset lhapdf # if you didn't link to lhapdf otherwise the path to lhapdf-config 8 * then type make; make EXEC where EXEC is the exuecutable that you want to use (various exists depending of the current mode fix-order or not, LO or NLO) 8 * then type make; make EXEC where EXEC is the exuecutable that you want to use (various exists depending of the current mode fix-order or not, LO or NLO --see below--) 9 If it didn't work this is likely that the Source directory was not compile with the same flag.So you need to recompile it with the same flags. 9 10 10 If it didn't work this is likely that the Source directory was not compile with the same flag.So you need to recompile it with the same flags. 11 Here is an example of the compilation (with the usual check) that we performed: 12 13 14 {{{ 15 make gensym 16 echo 0 | ./gensym 17 make test_ME 18 ./test_ME < ../../test_ME_input.txt 19 make check_poles 20 ./check_poles < ../../check_poles_input.txt 21 make madevent_mintMC # for event generation 22 make madevent_mintFO # for fixed-order runs 23 }}} 24 25