-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update zmatlib, replace zlib by miniz, update cmake, update version
- Loading branch information
Showing
43 changed files
with
11,022 additions
and
569 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
|
||
time ../../src/bin/mmc -f brain.inp -s brain -n 1e6 -b 1 -D TP -F nii $@ | ||
time ../../bin/mmc -f brain.inp -s brain -n 1e6 -b 1 -D TP -F nii $@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
|
||
../../src/bin/mmc -s dcs -f dcs.inp -b 1 -m 1 -D P -d 1 | ||
../../bin/mmc -s dcs -f dcs.inp -b 1 -m 1 -D P -d 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/sh | ||
|
||
time ../../src/bin/mmc -f mesh0.inp -s mesh0 -n 30000000 -b 0 -l -D TP | ||
time ../../src/bin/mmc -f mesh1.inp -s mesh1 -n 30000000 -b 0 -l -D TP | ||
time ../../src/bin/mmc -f mesh2.inp -s mesh2 -n 30000000 -b 0 -l -D TP | ||
time ../../bin/mmc -f mesh0.inp -s mesh0 -n 30000000 -b 0 -l -D TP | ||
time ../../bin/mmc -f mesh1.inp -s mesh1 -n 30000000 -b 0 -l -D TP | ||
time ../../bin/mmc -f mesh2.inp -s mesh2 -n 30000000 -b 0 -l -D TP | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
../../src/bin/mmc -n 20 -f onecube.inp -s onecube -G -1 -D M | grep '^M' | sed -e 's/^M/1/g' -e 's/^B/0/g' -e 's/P/2/g'| sed '$d' > mov.txt | ||
../../src/bin/mmc -n 20 -f onecube.inp -s onecube -G -1 -D MA | grep '^[A-Z]' | sed -e 's/^[A-Z] //g' | sed '$d' > ad.txt | ||
../../bin/mmc -n 20 -f onecube.inp -s onecube -G -1 -D M | grep '^M' | sed -e 's/^M/1/g' -e 's/^B/0/g' -e 's/P/2/g'| sed '$d' > mov.txt | ||
../../bin/mmc -n 20 -f onecube.inp -s onecube -G -1 -D MA | grep '^[A-Z]' | sed -e 's/^[A-Z] //g' | sed '$d' > ad.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
#!/bin/sh | ||
|
||
../../src/bin/mmc -n 100000 -f planar.inp -s planar -b 1 -x 1 -D E > debug.txt | ||
../../bin/mmc -n 100000 -f planar.inp -s planar -b 1 -x 1 -D E > debug.txt | ||
grep '^x ' debug.txt | sed -e 's/^x //g'> exitpos.txt | ||
grep '^e ' debug.txt | sed -e 's/^e //g'> enterpos.txt | ||
|
||
#../../src/bin/mmc -n 1 -f planar.inp -s planar -b 1 -x 1 -D M | sed -e 's/^M/1/g' -e 's/^B/0/g' -e 's/P/2/g'| sed '$d' > mov.txt | ||
#../../src/bin/mmc -n 1 -f planar.inp -s planar -b 1 -x 1 -D MA | sed -e 's/^[A-Z] //g' | sed '$d' > ad.txt | ||
#../../bin/mmc -n 1 -f planar.inp -s planar -b 1 -x 1 -D M | sed -e 's/^M/1/g' -e 's/^B/0/g' -e 's/P/2/g'| sed '$d' > mov.txt | ||
#../../bin/mmc -n 1 -f planar.inp -s planar -b 1 -x 1 -D MA | sed -e 's/^[A-Z] //g' | sed '$d' > ad.txt | ||
|
||
#../../src/bin/mmc -n 1000000 -f planar.inp -s planar -b 1 -x 1 -D TP | ||
#../../bin/mmc -n 1000000 -f planar.inp -s planar -b 1 -x 1 -D TP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
../../src/bin/mmc -n 20 -f onecube.inp -s onecube -b 1 -D M | sed -e 's/^M/1/g' -e 's/^B/0/g' -e 's/P/2/g' -e 's/T/3/g'| sed '$d' > mov.txt | ||
../../src/bin/mmc -n 20 -f onecube.inp -s onecube -b 1 -D MA | sed -e 's/^[A-Z] //g' | sed '$d' > ad.txt | ||
../../bin/mmc -n 20 -f onecube.inp -s onecube -b 1 -D M | sed -e 's/^M/1/g' -e 's/^B/0/g' -e 's/P/2/g' -e 's/T/3/g'| sed '$d' > mov.txt | ||
../../bin/mmc -n 20 -f onecube.inp -s onecube -b 1 -D MA | sed -e 's/^[A-Z] //g' | sed '$d' > ad.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/sh | ||
date | ||
|
||
../../../src/bin/mmc -n 1000000 -f tank_planar.inp -s tank_planar -b 1 -x 1 -U 0 -D TP | ||
../../../bin/mmc -n 1000000 -f tank_planar.inp -s tank_planar -b 1 -x 1 -U 0 -D TP | ||
|
||
date |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
#!/bin/sh | ||
|
||
# first run to get the seeds for each detected photon (-q 1) | ||
../../src/bin/mmc -f replaytest.inp -s step1 -n 3e6 -b 0 -q 1 -x 1 -d 1 -D TP | ||
../../bin/mmc -f replaytest.inp -s step1 -n 3e6 -b 0 -q 1 -x 1 -d 1 -D TP | ||
|
||
# replay the detected photons (-E *.mch) detected by detector#1 (-P 1) without normalization (-U 0) | ||
../../src/bin/mmc -f replaytest.inp -E step1.mch -s step2 -P 1 -b 0 -q 1 -x 1 -d 1 -O L -D TP | ||
../../bin/mmc -f replaytest.inp -E step1.mch -s step2 -P 1 -b 0 -q 1 -x 1 -d 1 -O L -D TP | ||
|
||
# replay the detected photons (-E *.mch) detected by detector#1 (-P 1) without normalization (-U 0) | ||
../../src/bin/mmc -f replaytest.inp -E step1.mch -s step3 -P 1 -b 0 -q 1 -x 1 -d 1 -O P -D TP | ||
../../bin/mmc -f replaytest.inp -E step1.mch -s step3 -P 1 -b 0 -q 1 -x 1 -d 1 -O P -D TP | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
#!/bin/sh | ||
|
||
# first run to get the seeds for each detected photon (-q 1) | ||
../../src/bin/mmc -f init_MC.inp -s init -n 3e7 -b 1 -q 1 -x 1 -D TP | ||
../../bin/mmc -f init_MC.inp -s init -n 3e7 -b 1 -q 1 -x 1 -D TP | ||
|
||
# replay the detected photons (-E *.mch) for full illumination & half detection (-P 0) under wl mode | ||
../../src/bin/mmc -f replay1.inp -E init.mch -s replay1 -P 0 -b 1 -O L -D TP | ||
../../bin/mmc -f replay1.inp -E init.mch -s replay1 -P 0 -b 1 -O L -D TP | ||
|
||
# replay the detected photons (-E *.mch) for half illumination & full detection (-P 0) under wp mode | ||
../../src/bin/mmc -f replay2.inp -E init.mch -s replay2 -P 0 -b 1 -O L -D TP | ||
../../bin/mmc -f replay2.inp -E init.mch -s replay2 -P 0 -b 1 -O L -D TP | ||
|
||
# replay the detected photons (-E *.mch) for half illumination & half detection (-P 0) under wl mode | ||
../../src/bin/mmc -f replay3.inp -E init.mch -s replay3 -P 0 -b 1 -O L -D TP | ||
../../bin/mmc -f replay3.inp -E init.mch -s replay3 -P 0 -b 1 -O L -D TP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
|
||
../../src/bin/mmc -n 3000000 -f sfdi.inp -s sfdi -b 0 -k 0 -D TP -M S $@ | ||
../../bin/mmc -n 3000000 -f sfdi.inp -s sfdi -b 0 -k 0 -D TP -M S $@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
|
||
../../src/bin/mmc -n 1000000 -f sharing.inp -s sharing -b 1 -k 0 -D TP | ||
../../bin/mmc -n 1000000 -f sharing.inp -s sharing -b 1 -k 0 -D TP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
../../src/bin/mmc -f dmmc_skinvessel.json -n 1e8 -F bin $@ | ||
../../bin/mmc -f dmmc_skinvessel.json -n 1e8 -F bin $@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
../../src/bin/mmc -f skinvessel.json -n 1e8 -F bin $@ | ||
../../bin/mmc -f skinvessel.json -n 1e8 -F bin $@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
#!/bin/sh | ||
|
||
#../../src/bin/mmc -n 100000 -f planar.inp -s planar -b 1 -x 1 -D E > debug.txt | ||
#../../bin/mmc -n 100000 -f planar.inp -s planar -b 1 -x 1 -D E > debug.txt | ||
#grep '^x ' debug.txt | sed -e 's/^x //g'> exitpos.txt | ||
#grep '^e ' debug.txt | sed -e 's/^e //g'> enterpos.txt | ||
|
||
#../../src/bin/mmc -n 1 -f planar.inp -s planar -b 1 -x 1 -D M | sed -e 's/^M/1/g' -e 's/^B/0/g' -e 's/P/2/g'| sed '$d' > mov.txt | ||
#../../src/bin/mmc -n 1 -f planar.inp -s planar -b 1 -x 1 -D MA | sed -e 's/^[A-Z] //g' | sed '$d' > ad.txt | ||
#../../bin/mmc -n 1 -f planar.inp -s planar -b 1 -x 1 -D M | sed -e 's/^M/1/g' -e 's/^B/0/g' -e 's/P/2/g'| sed '$d' > mov.txt | ||
#../../bin/mmc -n 1 -f planar.inp -s planar -b 1 -x 1 -D MA | sed -e 's/^[A-Z] //g' | sed '$d' > ad.txt | ||
|
||
../../src/bin/mmc -n 10000000 -f planar.inp -s planar -b 1 -x 1 -D TP | ||
../../bin/mmc -n 10000000 -f planar.inp -s planar -b 1 -x 1 -D TP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
../../src/bin/mmc -f dmmc_sphshells.json -n 1e8 -F bin $@ | ||
../../bin/mmc -f dmmc_sphshells.json -n 1e8 -F bin $@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
../../src/bin/mmc -f sphshells.json -n 1e8 -F bin $@ | ||
../../bin/mmc -f sphshells.json -n 1e8 -F bin $@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
|
||
time ../../src/bin/mmc -f cube.inp -s cube -n 100000 -b 0 -D PT | ||
time ../../bin/mmc -f cube.inp -s cube -n 100000 -b 0 -D PT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
|
||
time ../../src/bin/mmc -f cube2.inp -s cube2 -n 1e8 -b 0 -D TP -M G -F bin $@ | ||
time ../../bin/mmc -f cube2.inp -s cube2 -n 1e8 -b 0 -D TP -M G -F bin $@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
|
||
time ../../src/bin/mmc -f cube.inp -s cube -n 1e8 -b 0 -F bin -D TP $@ | ||
time ../../bin/mmc -f cube.inp -s cube -n 1e8 -b 0 -F bin -D TP $@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
# run with -x 2 to record detected photons in the form of time-resolved images | ||
../../src/bin/mmc -f widedet.inp -s widedet -n 1000000 -x 2 -b 1 -D TP | ||
../../bin/mmc -f widedet.inp -s widedet -n 1000000 -x 2 -b 1 -D TP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.