Changes between Version 19 and Version 20 of SchoolKias
- Timestamp:
- Mar 20, 2012, 4:04:32 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SchoolKias
v19 v20 51 51 Finally you should edit the file ~/.bashrc, by adding the following line into it 52 52 {{{ 53 53 54 export ROOTSYS=PATH_TO_YOUR_UNPACK_DIRECTORY 54 55 export PATH=$PATH:$ROOTSYS:$ROOTSYS/bin … … 59 60 In order to install those programs, you need to launch mg5 (./bin/mg5) and then type 60 61 {{{ 62 61 63 install pythia-pgs 62 64 install MadAnalysis … … 76 78 This package is suppose to be ready to run. To check that launch in the associate directory the command 77 79 {{{ 80 78 81 ./MCatNLO.inputs 79 82 }}} … … 117 120 After unpacking the directory. you will need to performed the two following action in the terminal 118 121 {{{ 122 119 123 cd 120 124 emacs .bash_profile … … 122 126 The last command will open a terminal, add in this file the following line: 123 127 {{{ 128 124 129 export ROOTSYS=PATH_TO_YOUR_UNPACK_DIRECTORY 125 130 export PATH=$PATH:$ROOTSYS:$ROOTSYS/bin … … 127 132 In order to exit the emacs editor, you need to do CTRL-X CTRL-S (this will save your modification) and after CTRL-X CTRL-C. Finally in your terminal you will need to type 128 133 {{{ 134 129 135 source .bash_profile 130 136 }}} … … 140 146 In order to install those programs, you need to launch mg5 (./bin/mg5) and then type 141 147 {{{ 148 142 149 install pythia-pgs 143 150 install MadAnalysis … … 156 163 This is the installation information (from http://hpc.sourceforge.net/): 157 164 {{{ 165 158 166 Download my binaries, and cd to the download folder. 159 167 Then gunzip g77-bin.tar.gz (if your browser didn't do so already) and … … 164 172 You can install it from the source: https://server06.fynu.ucl.ac.be/projects/madgraph/attachment/wiki/SchoolKias/MCatNLO.tgz This package is suppose to be ready to run. To check that launch in the associate directory the command 165 173 {{{ 174 166 175 ./MCatNLO.inputs 167 176 }}} 168 177 On some Mac computer the following error might occur 169 178 {{{ 179 170 180 ld: library not found for -lstdc++ 171 181 collect2: ld a retourné 1 code d'état d'exécution … … 178 188 If this happen, then you should edit the file MCatNLO.Script and replace the line 1313: 179 189 {{{ 190 180 191 ExtraLibs=$ExtraLibs" -lstdc++" 181 192 }}} 182 193 by 183 194 {{{ 195 184 196 ExtraLibs=$ExtraLibs" " 185 197 }}} … … 189 201 190 202 203