Skip to content
Snippets Groups Projects
Commit 11c45095 authored by Adrien Matta's avatar Adrien Matta :skull_crossbones:
Browse files

* Fixing npcompilation

        - nps compilation was done before npl compilation
parent a6ed208f
No related branches found
No related tags found
No related merge requests found
......@@ -75,11 +75,11 @@ void TTiaraHyballSpectra::InitRawSpectra(){
// RING_E_RAW
name = "HYB_RING_E_RAW";
AddHisto2D(name, name, fWedgesNumber*fRingsNumber, 1, fWedgesNumber*fRingsNumber+1, 512, 0, 16384, "TIARA/HYBALL/RAW/ENERGY");
AddHisto2D(name, name, fWedgesNumber*fRingsNumber, 1, fWedgesNumber*fRingsNumber+1, 512, 0, 4096, "TIARA/HYBALL/RAW/ENERGY");
// SECTOR_E_RAW
name = "HYB_SECT_E_RAW";
AddHisto2D(name, name, fWedgesNumber*fSectorsNumber, 1, fWedgesNumber*fSectorsNumber+1, 512, 0, 16384, "TIARA/HYBALL/RAW/ENERGY");
AddHisto2D(name, name, fWedgesNumber*fSectorsNumber, 1, fWedgesNumber*fSectorsNumber+1, 512, 0, 4096, "TIARA/HYBALL/RAW/ENERGY");
// MULT
for (unsigned int i = 0; i < fWedgesNumber; ++i) { // loop on number of wedges
......
......@@ -57,7 +57,7 @@ elif [ "$arg" = "-l" ]; then
# all
elif [ "$arg" = "-a" ]; then
cd $NPTOOL/NPSimulation
cd $NPTOOL/NPLib
if [ -f "build.ninja" ]; then
ninja install
elif [ -f "Makefile" ]; then
......@@ -67,7 +67,7 @@ elif [ "$arg" = "-a" ]; then
make install
fi
cd $NPTOOL/NPLib
cd $NPTOOL/NPSimulation
if [ -f "build.ninja" ]; then
ninja install
elif [ -f "Makefile" ]; then
......@@ -77,6 +77,7 @@ elif [ "$arg" = "-a" ]; then
make install
fi
# current folder
cd $FOLDER
if [ -f "build.ninja" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment