Ignore:
Timestamp:
Feb 9, 2007, 10:29:00 AM (17 years ago)
Author:
barrand
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • snovis/head/run/snova.par

    r6 r96  
    1 #/////////////////////////////////////////////////////////
    2 #/////  File containing nemo implementation options  /////
    3 #/////////////////////////////////////////////////////////
     1#//////////////////////////////////////////////////////////
     2#/////  File containing snova implementation options  /////
     3#//////////////////////////////////////////////////////////
    44
    55
     
    2020GLOBAL dst_fname S data/dst_test_random_Nd150_Bon.txt
    2121
     22######### VERTEX GENERATOR SECTION ########
    2223
    2324#/////////////////////////////////
     
    2526#/////////////////////////////////
    2627
    27 # Type of vertex generator
    28 # Options: "source_simple_bulk"
    29 #          "source_simple_surf"
    30 #          "input_file_name"
     28# Type of vertex generator: identified by unique 'name' registred
     29# in the Vertex Generator Factory:
     30# Options: "source_simple"
     31#          "CALO_basic"
     32#          "from_file"
    3133#          "spot"
    32 VERTEX gen_vertex S source_simple_bulk
     34VERTEX VG.type S source_simple
    3335
    34 # Save vertex in a file for next runs:
    35 VERTEX gen_vertex_save I 0
     36# the label of the vertex generator:
     37VERTEX VG.label S source_simple_bluk
    3638
    37 # Vertex output file for [gen_vertex != "input_file_name"]
    38 VERTEX gen_vertex_save_filename S vertex.out
     39# definition of a list of properties to configure the vertex generator:
     40# here this is vertex randomized from the bulk volume of the source foil:
     41VERTEX VG.configuration.source_simple_bluk SV 3
     42locate=bulk
     43save-file=Yes
     44save-filename=source_simple_bluk.vtx
    3945
    40 # Vertex input file for [gen_vertex == "input_file_name"]
    41 VERTEX gen_vertex_filename S vertex.in
     46# here this is vertex randomized from the front surface of the source foil:
     47VERTEX VG.configuration.source_simple_sf SV 4
     48locate=surf
     49side=front
     50save-file=Yes
     51save-filename=source_simple_sf.vtx
    4252
    43 # Spot vertex coordinates (cm) for [gen_vertex == "spot"]
    44 VERTEX gen_vertex_spot V 3
    45 0.
    46 0.
    47 0.
     53# here this is vertex randomized from the back surface of the source foil:
     54VERTEX VG.configuration.source_simple_sb SV 4
     55locate=surf
     56side=back
     57save-file=Yes
     58save-filename=source_simple_sb.vtx
    4859
    49 ######### PARTICLES GENERATOR SECTION ########
     60# here this is vertex randomized from the both front/back surfaces of the source foil:
     61VERTEX VG.configuration.source_simple_sa SV 4
     62locate=surf
     63side=all
     64save-file=Yes
     65save-filename=source_simple_sa.vtx
    5066
    51 # Generator data source ("random" or "input_file_name")
    52 # Options: "random"
    53 #          "input_file_name"
     67# here this is vertex randomized from CALO blocks on wrapper front surfaces
     68# from all walls
     69VERTEX VG.configuration.CALO_basic_wsaf SV 5
     70locate=wrapper_surf
     71wall=all
     72side=front
     73save-file=Yes
     74save-filename=CALO_basic_wsaf.vtx
    5475
    55 #GLOBAL gen_source S gen_data/test_2nubb_Nd150.txt
    56 GLOBAL gen_source S random
     76# here this is vertex randomized from CALO blocks on wrapper back surfaces
     77# from all walls
     78VERTEX VG.configuration.CALO_basic_wsab SV 5
     79locate=wrapper_surf
     80wall=all
     81side=back
     82save-file=Yes
     83save-filename=CALO_basic_wsab.vtx
    5784
    58 # In case of Generator data source == "random", Ekin (MeV) minimum limit
    59 GLOBAL gen_min_E D 0.05
     85# here this is vertex randomized from CALO blocks in wrapper volume (bulk)
     86# from all walls
     87VERTEX VG.configuration.CALO_basic_wbaa SV 5
     88locate=wrapper_bulk
     89wall=all
     90side=all
     91save-file=Yes
     92save-filename=CALO_basic_wbaa.vtx
    6093
    61 # In case of Generator data source == "random", Ekin (MeV) maximum limit
    62 GLOBAL gen_max_E D 3.55
     94######### PRIMARY PARTICLES GENERATOR SECTION ########
     95
     96# this is for randomize direction of the primary event:
     97EVGEN EG.randomize_dir I 1
     98
     99# (E)vent (G)enerator type:
     100# Options (hardcoded generators):
     101# "from_genbb_file" : uses an input file from GENBB-like program
     102# "single_particle" : shoot single particle in energy range
     103EVGEN EG.type S from_genbb_file
     104#EVGEN EG.type S single_particle
     105
     106# this is the input file used by the 'from_genbb_file' EG:
     107EVGEN EG.from_genbb_file.source S gen_data/example_Mo100.txt
     108
     109# this is the input parameters for used by the 'single_particle' EG:
     110EVGEN EG.single_particle.name S electron
     111
     112# minimal kinetic energy in keV:
     113EVGEN EG.single_particle.min_energy D 500.
     114
     115# maximal kinetic energy in keV:
     116EVGEN EG.single_particle.max_energy D 3000.
     117
     118######### SIM. NUMBER OF EVENTS ########
    63119
    64120# Number of events
    65121GLOBAL num_events I 10
    66 
    67 # Initial particles name
    68 GLOBAL part_name S e-
    69122
    70123
     
    74127GLOBAL geom_file S snemo.geom
    75128
     129
     130######### MISC SECTION ########
     131
    76132# In case of visual run, display a complete view (1) or just the shape (0)
    77133GLOBAL DISPLAY_ALL I 0
    78134
    79135
     136######### PHYSICS SECTION ########
    80137
    81138#///////////////////////////////////
Note: See TracChangeset for help on using the changeset viewer.