Difference between revisions of "Simulations of Particle Interactions with Matter"
Jump to navigation
Jump to search
Line 75: | Line 75: | ||
http://slurm.schedmd.com/quickstart.html | http://slurm.schedmd.com/quickstart.html | ||
+ | ===simple batch script for one process job=== | ||
+ | |||
+ | create the file submit.sbatch below | ||
+ | |||
+ | <pre> | ||
+ | #!/bin/sh | ||
+ | #SBATCH --time=1 | ||
+ | cd src/PI | ||
+ | ./PI_MC 100000000000000 | ||
+ | </pre> | ||
+ | |||
+ | the execute | ||
+ | |||
+ | :sbatch submit.sbatch | ||
+ | |||
+ | check if its running with | ||
+ | |||
+ | :squeue | ||
[[TF_SPIM_OLD]] | [[TF_SPIM_OLD]] |
Revision as of 04:20, 17 December 2014
Class Admin
Homework Problems
HomeWork_Simulations_of_Particle_Interactions_with_Matter
Introduction
Energy Loss
Ann. Phys. vol. 5, 325, (1930)
Interactions of Electrons and Photons with Matter
Hadronic Interactions
Resources
running batch on minerve2
sstat squeue sinfo srun
Building GEANT4.9.5
An old version of Installation notes for versions prior to 9.5
Visualization Libraries:
Compiling G4 with ROOT
These instruction describe how you can create a tree within ExN02SteppingVerbose to store tracking info in an array (max number of steps in a track is set to 100 for the desired particle)
Using SLURM
http://slurm.schedmd.com/quickstart.html
simple batch script for one process job
create the file submit.sbatch below
#!/bin/sh #SBATCH --time=1 cd src/PI ./PI_MC 100000000000000
the execute
- sbatch submit.sbatch
check if its running with
- squeue