Trisurf Monte Carlo simulator
Samo Penic
2016-06-01 67749cb5e94a7d28a449a8346b8b3efad786e765
Added statistics combining python script. Rudimentary at the moment.
1 files added
1 files modified
1 files deleted
39 ■■■■■ changed files
python/myTestConfig.py 6 ●●●● patch | view | raw | blame | history
python/paramikoTest.py 14 ●●●●● patch | view | raw | blame | history
python/trisurf/statistics.py 19 ●●●●● patch | view | raw | blame | history
python/myTestConfig.py
@@ -1,7 +1,7 @@
#!/usr/bin/python3
from trisurf import tsmgr
from trisurf import trisurf
from trisurf import statistics
print("Running trisurf version "+ tsmgr.getTrisurfVersion())
@@ -29,5 +29,5 @@
#obligatory final configuration step: combine all runs
Runs=[run1,run2]+pRun
#start manager with configured runs
tsmgr.start(Runs)
#tsmgr.start(Runs)
statistics.combine([run1,run2])
python/paramikoTest.py
File was deleted
python/trisurf/statistics.py
New file
@@ -0,0 +1,19 @@
from trisurf import trisurf
import os
def combine(Runs):
    """Runs are those runs of which statistics are to be combined"""
    data=[]
    for run in Runs:
        dir=trisurf.Directory(maindir=run.maindir,simdir=run.subdir)
        statfile=os.path.join(dir.fullpath(),"statistics.csv")
        with open (statfile,"r") as myfile:
            #lines = [line.rstrip('\n') for line in myfile]
            data=data+myfile.readlines()[1:]
    print("Header line placer... Not yet implemented")
    for line in data:
        print(line.replace('\n',''))