Last change
on this file since 1158 was 1158, checked in by Pavel Demin, 11 years ago |
remove unneeded semicolon from DelphesProMC.sh
|
File size:
503 bytes
|
Line | |
---|
1 | #!/bin/sh
|
---|
2 |
|
---|
3 | if [ -z "$PROMC" ]
|
---|
4 | then
|
---|
5 | echo "** ERROR: PROMC variable is not set. Is ProMC installed?"
|
---|
6 | else
|
---|
7 | echo ">> PROMC is set to $PROMC"
|
---|
8 | echo ">> Building DelphesProMC"
|
---|
9 |
|
---|
10 | /bin/mkdir -p external/ProMC
|
---|
11 |
|
---|
12 | /bin/cp $PROMC/src/* external/ProMC/
|
---|
13 |
|
---|
14 | INC="-I$PROMC/include"
|
---|
15 |
|
---|
16 | LIB="external/ProMC/*.cc -L$PROMC/lib -lprotoc -lprotobuf -lprotobuf-lite -lcbook -lz"
|
---|
17 |
|
---|
18 | g++ -I. -Iexternal $INC `root-config --cflags --ldflags --libs` -lEG -L. -lDelphes $LIB -o DelphesProMC examples/DelphesProMC.cpp
|
---|
19 | fi
|
---|
Note:
See
TracBrowser
for help on using the repository browser.