Geant4 Cross Reference |
1 1 2 ========================================= 2 ========================================================= 3 Geant4 - ULTRA-based air shower 3 Geant4 - ULTRA-based air shower example 4 ========================================= 4 ========================================================= 5 5 6 README 6 README 7 --------------------- 7 --------------------- 8 8 9 ---------------------------------------------- << 9 ------------------------------------------------------------------------| 10 ----> Introduction. 10 ----> Introduction. 11 << 11 | 12 The ULTRA detector is a hybrid 2-component sys 12 The ULTRA detector is a hybrid 2-component system consisting of: >> 13 | 13 14 14 << 15 1) an UV detection system - the UVscope | 15 1) an UV detection system - the UVscope << 16 2) an array of scintillator detectors - the ET 16 2) an array of scintillator detectors - the ETscope 17 << 17 | 18 The UVscope detects Cherenkov light associated 18 The UVscope detects Cherenkov light associated to cosmic ray showers 19 when it is diffusively reflected on ground. << 19 when it is diffusively reflected on ground. | 20 The ETscope detects in coincidence the charged 20 The ETscope detects in coincidence the charged particles of the shower. 21 << 21 | 22 In the current version only the UVscope simula 22 In the current version only the UVscope simulation is included 23 ---------------------------------------------- << 23 ------------------------------------------------------------------------| 24 ----> Description 24 ----> Description 25 << 25 | 26 The UVscope consists of a Fresnel lens and a P 26 The UVscope consists of a Fresnel lens and a PMT located in the focal 27 plane, enclosed in a cylindrical aluminum hous << 27 plane, enclosed in a cylindrical aluminum housing. The lens is 457 mm | 28 in diameter and is made of UV transmitting acr 28 in diameter and is made of UV transmitting acrylic with 5.6 grooves 29 per mm. The description of the geometry of the << 29 per mm. The description of the geometry of the Fresnel lens makes use | 30 of object parameterisation/replication capabil 30 of object parameterisation/replication capabilities. 31 << 31 | 32 The primary vertex generator describes a plane 32 The primary vertex generator describes a plane circular source of UV 33 (3eV, about 400 nm) optical photons. << 33 (3eV, about 400 nm) optical photons. | 34 Depending on the selected detector configurati << 34 Depending on the user selection (see below for the relevant environment 35 positioned such that the photons are fired << 35 variables) the source can be positioned such that the photons are fired | 36 to a reflecting surface or, by default, direct 36 to a reflecting surface or, by default, directly to the UVscope 37 (no reflecting surface is present in this case << 37 (no reflecting surface is present in this case). | 38 Reflection at the surface can be chosen to be 38 Reflection at the surface can be chosen to be specular or diffuse. 39 In both cases the normal to the surface makes << 39 In both cases the normal to the surface makes an angle of 45 degrees | 40 with the UVscope axis and the photons are emit 40 with the UVscope axis and the photons are emitted at an angle of 41 90 degrees with the UVscope axis. << 41 90 degrees with the UVscope axis. | 42 If none of these variables is set no reflectin 42 If none of these variables is set no reflecting surface is used 43 and the photons source is positioned at the UV 43 and the photons source is positioned at the UVscope axis. 44 << 44 | 45 The definition of the relevant optical boundar 45 The definition of the relevant optical boundaries, parameters and 46 processes is made. << 46 processes is made. | 47 47 48 ---------------------------------------------- << 48 ------------------------------------------------------------------------| 49 ----> SET-UP 49 ----> SET-UP 50 << 50 | 51 A standard Geant4 example GNUmakefile and a CM 51 A standard Geant4 example GNUmakefile and a CMakeLists.txt file are 52 provided, for building with cmake << 52 provided, for building with cmake | 53 << 54 The following environment variable can be set << 55 additional verbosity during program running: << 56 << 57 1) GNUmakefile << 58 << 59 setenv ULTRA_VERBOSE << 60 53 61 or << 54 The following environment variables can be set: | 62 55 63 2) cmake -DULTRA_VERBOSE=ON "path to source" << 56 setenv ULTRA_VERBOSE 64 57 >> 58 setenv ULTRA_MIRROR_USE 1 : A specular reflecting surface is used. >> 59 setenv ULTRA_GROUND_USE 1 : A diffusive reflecting surface is used. 65 60 66 ---------------------------------------------- 61 ------------------------------------------------------------------------ 67 62 68 The analysis is performed using the native Gea 63 The analysis is performed using the native Geant4 analysis tools 69 (g4tools). In the default case, the output his 64 (g4tools). In the default case, the output histograms are written 70 in a ROOT file. << 65 as xml files. 71 66 72 The output file can be written in other format << 67 The output file can be written in ROOT format by editing the file 73 changing the G4AnalysisManager default file ty << 68 include/UltraAnalysisManager.hh >> 69 to uncomment >> 70 #include "g4root.hh" >> 71 and comment out >> 72 #include "g4xml.hh" >> 73 >> 74 The output can be get also in hbook format (but this will require a >> 75 FORTRAN compiler) by following the istructions of Sect. 9.2 of >> 76 the Geant4 application developer manual (Analysis Manager Classes) 74 77 75 ---------------------------------------------- << 78 - 76 ----> How to run the example. << 77 79 78 From the directory where the Ultra binary re << 80 ----------------------------------------------------------------------- >> 81 ----> How to run the example. | 79 82 80 ./Ultra "macro name" for running in batch mo << 83 - batch mode: 81 << 84 $G4WORDIR/bin/Linux-g++/Ultra UltraMacro.mac | 82 ./Ultra for running in interative mode. << 85 | 83 The macro VisDirect.mac is executed. << 86 - Interative mode: 84 << 87 3) $G4WORDIR/bin/Linux-g++/Ultra | 85 Several macros are available for interactive << 86 While in interactive mode type the command << 87 /control/execute "name_of_macro", << 88 where "name_of_macro" is one of the followin << 89 << 90 Direct.mac - a beam of photons is shot direc << 91 Mirror.mac - the beam is directed to a specu << 92 Ground.mac - the beam is directed to a diffu << 93 88 94 ---------------------------------------------- 89 ------------------------------------------------------------------------ 95 ----> Simulation output << 90 ----> Simulation output | 96 91 97 the output is ultra.root << 92 the output is ultra.xml (or ultra.root) | 98 It contains: 93 It contains: 99 1)1Dhistogram with the detected photons energ << 94 1)1Dhistogram with the detected photons energy (eV) | 100 2)1Dhistogram with the number of detected pho << 95 2)1Dhistogram with the number of detected photons per event | 101 96 >> 97 ------------------------------------------------------------------------ >> 98 ----> Visualisation | 102 99 103 To plot these histograms run the ROOT macro 'd << 100 a macro is provided as example of visulisation: Visualisation.mac | 104 > root do_plots.C << 101 to run it : $G4WORKDIR/bin/Linux-g++/Ultra Visualisation.mac 105 ---------------------------------------------- 102 ------------------------------------------------------------------------ 106 103 107 for comments and questions: bernardo@lip.pt 104 for comments and questions: bernardo@lip.pt 108 for more info http://www.ge.infn.it/geant4/exa 105 for more info http://www.ge.infn.it/geant4/examples/ 109 106 110 last modified: B. Tome 08/11/2019 << 107 last modified: L. Pandola 28/05/2013 111 created by : B. Tome and M.C. Espirito Sant 108 created by : B. Tome and M.C. Espirito Santo 20/05/2004