~ajdobbs/maus/event-viewer

« back to all changes in this revision

Viewing changes to src/common_py/ConfigurationDefaults.py

  • Committer: Adam Dobbs
  • Date: 2016-06-20 14:09:47 UTC
  • mfrom: (659.4.38 release-candidate)
  • mto: This revision was merged to the branch mainline in revision 1115.
  • Revision ID: phuccj@gmail.com-20160620140947-k339s2q5trdmk76e
Tags: MAUS-v2.5, MAUS-v2.5.0
MAUS-v2.5.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
793
793
# y coordinate, hence x does not need to be configurable. EMR uses reconstructed error
794
794
# so a multiplier is used.
795
795
track_matching_tolerances = {
796
 
  "TOF0x":30.0,
797
 
  "TOF0y":30.0,
 
796
  "TOF0t":2.0, # ns between actual and expected TOF0-1 Delta t
798
797
  "TOF1x":40.0,
799
798
  "TOF1y":40.0,
800
799
  "TOF2x":40.0,
808
807
 
809
808
# Whether to use energy loss calculations for global track matching
810
809
track_matching_energy_loss = True
 
810
# Whether propagation matching should not be performed if each detector has no more than one hit
 
811
track_matching_no_single_event_check = True
 
812
# Additional restriction on the above, still perform matching if some of the hits may be noise
 
813
# due to a small charge deposit
 
814
track_matching_check_charge_thresholds = {
 
815
  "TOF0":0.0,
 
816
  "TOF1":0.0,
 
817
  "TOF2":0.0,
 
818
  "KL":0.0
 
819
}