1 | #/////////////////////////////////////////////////////////
|
---|
2 | #///// File containing nemo implementation options /////
|
---|
3 | #/////////////////////////////////////////////////////////
|
---|
4 |
|
---|
5 |
|
---|
6 | #/////////////////////////////////
|
---|
7 | # This is group GLOBAL variables
|
---|
8 | #/////////////////////////////////
|
---|
9 |
|
---|
10 | # Simulation data verbosity (MUTE, CONCISE, NORMAL, DETAILED, VERBOSE, VVERBOSE)
|
---|
11 | GLOBAL simulation_verbosity S NORMAL
|
---|
12 |
|
---|
13 | # G4 Tracking verbosity ("0", "1", "2", "3", ...)
|
---|
14 | GLOBAL G4Tracking_verbosity S 0
|
---|
15 |
|
---|
16 | # Output dst file name
|
---|
17 | # Allowed extensions: '.txt' for text files
|
---|
18 | # '.gz' for gziped text files
|
---|
19 | # '.h5' for HDF5 files
|
---|
20 | GLOBAL dst_fname S data/dst_test_random_Nd150_Bon.txt
|
---|
21 |
|
---|
22 |
|
---|
23 | #/////////////////////////////////
|
---|
24 | # This is group VERTEX variables
|
---|
25 | #/////////////////////////////////
|
---|
26 |
|
---|
27 | # Type of vertex generator
|
---|
28 | # Options: "source_simple_bulk"
|
---|
29 | # "source_simple_surf"
|
---|
30 | # "input_file_name"
|
---|
31 | # "spot"
|
---|
32 | VERTEX gen_vertex S source_simple_bulk
|
---|
33 |
|
---|
34 | # Save vertex in a file for next runs:
|
---|
35 | VERTEX gen_vertex_save I 0
|
---|
36 |
|
---|
37 | # Vertex output file for [gen_vertex != "input_file_name"]
|
---|
38 | VERTEX gen_vertex_save_filename S vertex.out
|
---|
39 |
|
---|
40 | # Vertex input file for [gen_vertex == "input_file_name"]
|
---|
41 | VERTEX gen_vertex_filename S vertex.in
|
---|
42 |
|
---|
43 | # Spot vertex coordinates (cm) for [gen_vertex == "spot"]
|
---|
44 | VERTEX gen_vertex_spot V 3
|
---|
45 | 0.
|
---|
46 | 0.
|
---|
47 | 0.
|
---|
48 |
|
---|
49 | ######### PARTICLES GENERATOR SECTION ########
|
---|
50 |
|
---|
51 | # Generator data source ("random" or "input_file_name")
|
---|
52 | # Options: "random"
|
---|
53 | # "input_file_name"
|
---|
54 |
|
---|
55 | #GLOBAL gen_source S gen_data/test_2nubb_Nd150.txt
|
---|
56 | GLOBAL gen_source S random
|
---|
57 |
|
---|
58 | # In case of Generator data source == "random", Ekin (MeV) minimum limit
|
---|
59 | GLOBAL gen_min_E D 0.05
|
---|
60 |
|
---|
61 | # In case of Generator data source == "random", Ekin (MeV) maximum limit
|
---|
62 | GLOBAL gen_max_E D 3.55
|
---|
63 |
|
---|
64 | # Number of events
|
---|
65 | GLOBAL num_events I 10
|
---|
66 |
|
---|
67 | # Initial particles name
|
---|
68 | GLOBAL part_name S e-
|
---|
69 |
|
---|
70 |
|
---|
71 | ######### GEOMETRY SECTION ########
|
---|
72 |
|
---|
73 | # GEOMETRY parameters file
|
---|
74 | GLOBAL geom_file S snemo.geom
|
---|
75 |
|
---|
76 | # In case of visual run, display a complete view (1) or just the shape (0)
|
---|
77 | GLOBAL DISPLAY_ALL I 0
|
---|
78 |
|
---|
79 |
|
---|
80 |
|
---|
81 | #///////////////////////////////////
|
---|
82 | # This is group PHYSICS variables
|
---|
83 | #///////////////////////////////////
|
---|
84 |
|
---|
85 | # Energy Loss Enabled for electrons (0=OFF 1=ON)
|
---|
86 | PHYSICS energy_loss I 1
|
---|
87 |
|
---|
88 | # Multiple Scattering Enabled for electrons (0=OFF 1=ON)
|
---|
89 | PHYSICS mult_scattering I 1
|
---|
90 |
|
---|
91 | # Maximum Step Length inside the SOURCE (mm)
|
---|
92 | PHYSICS SOURCE_max_step D 0.01
|
---|
93 |
|
---|
94 | # Maximum Step Length inside the GEIGER CELLS (mm)
|
---|
95 | PHYSICS GG_CELL_max_step D 5.
|
---|
96 |
|
---|
97 | # Cut (mm) for Calorimeter region
|
---|
98 | PHYSICS calo_cut D 5.
|
---|
99 |
|
---|
100 | # Cut (mm) for Tracking region
|
---|
101 | PHYSICS tracking_cut D .5
|
---|
102 |
|
---|
103 | # Cut (mm) for Source region
|
---|
104 | PHYSICS source_cut D .05
|
---|
105 |
|
---|
106 |
|
---|
107 | #///////////////////////////////////
|
---|
108 | # This is group CHECK variables
|
---|
109 | #///////////////////////////////////
|
---|
110 |
|
---|
111 | # Store meaning-less particles generated at the Calorimeter: YES (1) or NO (0)
|
---|
112 | CHECK store_all I 0
|
---|
113 |
|
---|
114 | # Print BHEP Stored particles at the end: YES (1) or NO (0)
|
---|
115 | CHECK print_parts I 0
|
---|
116 |
|
---|
117 | # end of parameters file
|
---|