ENSAR2 workshop: GEANT4 in nuclear physics

23 December 2018


https://indico.cern.ch/event/746466/

24 April 2019 - 26 April 2019 - CIEMAT Madrid, Spain

Monte Carlo simulations play a key role in the planning, realization and analysis of nuclear physics experiments and applications. For this reason, the ENSAR2 European Project is organising a workshop between the GEANT4 developers and nuclear physicist with important experience in GEANT4. The goals of the
Read more

Geant4 basic course at CERN

14 December 2018


The CERN Geant4 team in collaboration with the Technical Training team at CERN, will undertake a two days hands-on course on Geant4 at CERN on January 22nd-23rd, 2019.

http://indico.cern.ch/e/geant4_beginners_course_2019

The course will cover Geant4 basics for creating applications in any domain, but with extra emphasis on topics most relevant to experiments in High Energy or Nuclear Physics. Exercises will be


Read more

bashrc on the farm

09 August 2018


My .bashrc on the Roma1 farm:



if tty > /dev/null; then
alias cd..='cd ..'
alias ll='ls -ltrh'
alias ls='ls -GF'
export PS1='[\[\033[01;32m\]\u@\h:\[\033[34m\]\w\[\033[0m\]]\$ '
if [[ $HOSTNAME =~ "farm-login-01.roma1.infn.it" || $HOSTNAME =~ "farm-login-02.roma1.infn.it" ]]; then
. /chirone/soft/linuxbrew/set.sh
alias emacs='emacs -nw --user ""'
export PS1='[\[\033[01;32m\]\u@farm:\[\033[34m\]\w\[\033[0m\]]\$ '
export G4DIR=/chirone/soft/geant4.10.04.p02-install
elif

Read more

Third Geant4 International User Conference

11 June 2018


The Third Geant4 International User Conference at the Physics-Medicine-Biology frontier will take place in Bordeaux, France, on October 29-31st, 2018.

This conference will gather during three days developers and users of the Geant4 Monte Carlo general purpose simulation toolkit and Geant4-based tools, such as TOPAS, GATE, etc. It will focus on biological, clinical and other medical applications, including imaging, radiotherapy treatments


Read more

my bash profile

04 April 2018


My .bash_profile on a mac:


# include .bashrc if it exists
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi

if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi

# ir root has been installed with brew
# if [ -f $(brew --prefix root)/libexec/thisroot.sh ]; then

Read more