source: snovis/head/run/snova.par @ 6

Last change on this file since 6 was 6, checked in by barrand, 17 years ago
File size: 2.9 KB
Line 
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)
11GLOBAL simulation_verbosity S NORMAL
12
13# G4 Tracking verbosity ("0", "1", "2", "3", ...)
14GLOBAL 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
20GLOBAL 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"
32VERTEX gen_vertex S source_simple_bulk
33
34# Save vertex in a file for next runs:
35VERTEX gen_vertex_save I 0
36
37# Vertex output file for [gen_vertex != "input_file_name"]
38VERTEX gen_vertex_save_filename S vertex.out
39
40# Vertex input file for [gen_vertex == "input_file_name"]
41VERTEX gen_vertex_filename S vertex.in
42
43# Spot vertex coordinates (cm) for [gen_vertex == "spot"]
44VERTEX gen_vertex_spot V 3
450.
460.
470.
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
56GLOBAL gen_source S random
57
58# In case of Generator data source == "random", Ekin (MeV) minimum limit
59GLOBAL gen_min_E D 0.05
60
61# In case of Generator data source == "random", Ekin (MeV) maximum limit
62GLOBAL gen_max_E D 3.55
63
64# Number of events
65GLOBAL num_events I 10
66
67# Initial particles name
68GLOBAL part_name S e-
69
70
71######### GEOMETRY SECTION ########
72
73# GEOMETRY parameters file
74GLOBAL geom_file S snemo.geom
75
76# In case of visual run, display a complete view (1) or just the shape (0)
77GLOBAL 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)
86PHYSICS energy_loss I 1
87
88# Multiple Scattering Enabled for electrons (0=OFF 1=ON)
89PHYSICS mult_scattering I 1
90
91# Maximum Step Length inside the SOURCE (mm)
92PHYSICS SOURCE_max_step D 0.01
93
94# Maximum Step Length inside the GEIGER CELLS (mm)
95PHYSICS GG_CELL_max_step D 5.
96
97# Cut (mm) for Calorimeter region
98PHYSICS calo_cut D 5.
99
100# Cut (mm) for Tracking region
101PHYSICS tracking_cut D .5
102
103# Cut (mm) for Source region
104PHYSICS 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)
112CHECK store_all I 0
113
114# Print BHEP Stored particles at the end: YES (1) or NO (0)
115CHECK print_parts I 0
116
117# end of parameters file
Note: See TracBrowser for help on using the repository browser.