GEANT4(7)
-
geant4 installation on mountain lion
>.....>In file included from src/G4RayTracerXViewer.cc:38:>include/G4RTXScanner.hh:45:22: error: X11/Xlib.h: No such file or directory>include/G4RTXScanner.hh:46:23: error: X11/Xutil.h: No such file or directory>..... 뭐 이런 error 쯤이야. 간단하게 해결. Good!export CPPFLAGS=-I/opt/X11/include
2012.10.24 -
touch: cannot touch
Geant4 compile 하다가 아래와 같은 통보를 만날 때 touch: cannot touch `/***/exe/obj.last': No such file or directory 아래의 세가지가 일치하는지 확인할 것. 1. Executable name in the makefile 2. Directory name 3. name.cc (executable name) 사실 2 번은 잘 모르겠는데..
2012.09.17 -
Phase-space database for external beam radiotherapy
IAEA 에서 제공하는 유용한 자료. Medical Linac Monte Carlo simulation 에 관심있는 사람이라면 눈여겨 볼 만하다. http://www-nds.iaea.org/phsp/phsp.htmlx EGSnrc 와 PENELOPE Monte Carlo codes 에서는 IAEA format 을 직접 사용가능하고 Geant4 에서는 interface 가 필요 http://www-nds.iaea.org/phsp/Geant4/ cross-check 으로 사용하여도 매우 유용할 듯 :)
2012.06.27 -
Using AIDA with Geant4
in your main GNUmakefile : include $(G4INSTALL)/config/binmake.gmk CPPFLAGS += `aida-config --incs` ANALYSISLIBS += `aida-config --libs` Geant4.9.1 여서 그랬을까? .. kenobi에서 AIDA 잡느라 시간 좀 걸렸네. 훗. http://openscientist.lal.in2p3.fr/
2010.07.12 -
Geant4 analysis - AIDA and ROOT
Using AIDA in Makefile G4ANALYSIS_USE:=true CPPFLAGS += $(shell aida-config --include) LDFLAGS += $(shell aida-config --libs) Direct ROOT Use CPPFLAGS += $(shell root-config --cflags) LDFLAGS += $(shell root-config --libs) what else? ..
2010.07.08