~chris-rogers/maus/emr_mc_digitization

« back to all changes in this revision

Viewing changes to bin/utilities/envelope_tool/share/pseudobeamline.py

  • Committer: Chris Rogers
  • Date: 2014-04-16 11:48:45 UTC
  • mfrom: (707 merge)
  • mto: This revision was merged to the branch mainline in revision 711.
  • Revision ID: chris.rogers@stfc.ac.uk-20140416114845-h3u3q7pdcxkxvovs
Update to trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""Test configuration for envelope tool"""
 
2
#pylint: disable=C0103
 
3
 
 
4
import os
 
5
 
 
6
simulation_geometry_filename = os.path.expandvars("${MAUS_ROOT_DIR}/bin/"+\
 
7
              "utilities/envelope_tool/share/PseudoBeamlineGeometry.dat")
 
8
simulation_reference_particle = { # used for setting particle phase
 
9
    "position":{"x":1600.0, "y":0.0, "z":0.0},
 
10
    "momentum":{"x":-0.5, "y":0.0, "z":0.5},
 
11
    "particle_id":-13, "energy":226.0, "time":0.0, "random_seed":10
 
12
}
 
13
verbose_level = 5
 
14
max_step_length = 10.
 
15
 
 
16
TransferMapOpticsModel_Deltas = {"t":0.01, "E":0.01,
 
17
                                 "x":0.01, "Px":0.01,
 
18
                                 "y":0.01, "Py":0.01}
 
19
 
 
20