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
2 changes: 1 addition & 1 deletion t30_dna/runAnalysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def analyse(f1, f2, f3):
m2 = find_min_energy(v2)
m3 = find_min_energy(v3)

return m1 < .0025 and m2 >= .0025 and m3 < .0025
return m1 < .0025 and m2 >= .0005 and m3 < .0025


if __name__ == '__main__':
Expand Down
3 changes: 2 additions & 1 deletion t31_vpgTLE-tt/runAnalysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ def compare_branch_mhd(f1, f2, tol):
def analyse_one_folder(folder, previous_folder):
# read first phsp
tree1 = uproot.open(f'{folder}/detector_vpg_Carbon.root')['PhaseSpace']
tree1 = tree1.arrays(library="numpy")
#tree1 = tree1.arrays(library="numpy")
tree1 = tree1.arrays(["AtomicNumber", "X", "Ekine", "Time", "IonTime"], library="np")
n1 = len(tree1['X'])
print(f'First (write) phsp {n1} {tree1.keys()}')

Expand Down
2 changes: 1 addition & 1 deletion t8_LETActor/mac/main.mac
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# PHYSICS
#=====================================================

/gate/physics/addPhysicsList FTFP_INCLXX_EMZ
/gate/physics/addPhysicsList QGSP_BIC_HP #FFTFP_INCLXX_EMZ
#/control/execute mac/physicslist_HAD_std_6_2_2.mac

/gate/physics/Gamma/SetCutInRegion world 100 m
Expand Down