00001
00002
00003 '''
00004 usage example:
00005
00006 nuwa.py -n 10 alpha_uni.py
00007
00008 '''
00009
00010 import GaudiKernel.SystemOfUnits as units
00011
00012 from DetSimValidation.AD import UniformPositron
00013 up = UniformPositron(histogram_filename = '../mc_ntuple/alpha_uni.root')
00014 up.gun.ParticleName = "alpha"
00015 up.gun.Momentum = 5*units.MeV
00016
00017 from GaussTools.GaussToolsConf import GiGaEventActionCommand
00018 ggeac = GiGaEventActionCommand()
00019 ggeac.BeginOfEventCommands = ["/tracking/verbose 3"]
00020 up.detsim.giga.EventAction = ggeac
00021
00022
00023 if '__main__' == __name__:
00024 print __doc__