Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
#include "TLatex.h"

#include "TPCSpaceCharge/SpaceCharge.h"
R__LOAD_LIBRARY(libO2TPCSpaceChargeIO)

#include "CommonConstants/MathConstants.h"
#include "CommonUtils/TreeStreamRedirector.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

// g++ -o spacecharge ~/alice/O2/Detectors/TPC/spacecharge/macro/calculateDistortionsCorrections.C -I ~/alice/sw/osx_x86-64/FairLogger/latest/include -L ~/alice/sw/osx_x86-64/FairLogger/latest/lib -I$O2_ROOT/include -L$O2_ROOT/lib -lO2TPCSpacecharge -lO2CommonUtils -std=c++17 -I$ROOTSYS/include -L$ROOTSYS/lib -lCore -L$VC_ROOT/lib -lVc -I$VC_ROOT/include -Xpreprocessor -fopenmp -I/usr/local/include -L/usr/local/lib -lomp -O3 -ffast-math -lFairLogger -lRIO
#include "TPCSpaceCharge/SpaceCharge.h"
R__LOAD_LIBRARY(libO2TPCSpaceChargeIO)
#include "TPCBase/Mapper.h"
#include <iostream>
#include <chrono>
Expand Down
1 change: 1 addition & 0 deletions Detectors/TPC/spacecharge/macro/createSCHistosFromHits.C
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ g++ -o createSCHistosFromHits createSCHistosFromHits.C -I ~/alice/sw/osx_x86-64/
#include "TPCSimulation/SAMPAProcessing.h"
#include "TPCSimulation/Point.h"
#include "TPCSpaceCharge/SpaceCharge.h"
R__LOAD_LIBRARY(libO2TPCSpaceChargeIO)
#include "TPCSpaceCharge/PoissonSolverHelpers.h"
#include "DataFormatsTPC/Defs.h"
#include "TPCSpaceCharge/SpaceChargeHelpers.h"
Expand Down
2 changes: 1 addition & 1 deletion tests/test-root-macro.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@
ERRVARNAME="test_root_macro_sh_in_err"

CMD="Int_t ${ERRVARNAME}; gROOT->ProcessLine(\"${ROOTCMD}\",&${ERRVARNAME});
std::cout << \"Exit code=\" << ${ERRVARNAME} << \"\n\"; gSystem->Exit(${ERRVARNAME});"

Check failure on line 29 in tests/test-root-macro.sh.in

View workflow job for this annotation

GitHub Actions / PR formatting / whitespace

Trailing spaces

Remove the trailing spaces at the end of the line.

Check failure on line 29 in tests/test-root-macro.sh.in

View workflow job for this annotation

GitHub Actions / PR formatting / whitespace

Trailing spaces

Remove the trailing spaces at the end of the line.

echo "ROOT_INCLUDE_PATH to be used:"
echo ${INCPATH} | tr ":" "\n"
echo "LD_LIBRARY_PATH to be used:"
echo ${LIBPATH} | tr ":" "\n"

env ROOT_INCLUDE_PATH=${INCPATH} LD_LIBRARY_PATH=${LIBPATH} @ROOT_root_CMD@ -n -b -l -q -e "${CMD}"
env ROOT_INCLUDE_PATH=${INCPATH} LD_LIBRARY_PATH=${LIBPATH} DYLD_FALLBACK_LIBRARY_PATH=${LIBPATH} @ROOT_root_CMD@ -n -b -l -q -e "${CMD}"

RV=$?

Expand Down
Loading