Newer
Older
TB_Chris / Kepler / options / alignment / .svn / text-base / survey.py.svn-base
@iaro iaro on 9 May 2016 614 bytes first attempt of automated anal
  1. from Gaudi.Configuration import *
  2.  
  3. from Configurables import Kepler
  4. # Add TbAlignment to the Telescope sequence.
  5. Kepler().Alignment = True
  6. # Set the number of events to process.
  7. Kepler().EvtMax = 100
  8.  
  9. from Configurables import TbEventBuilder
  10. # Skip noise events.
  11. TbEventBuilder().MinPlanesWithHits = 5
  12.  
  13. from Configurables import TbClusterPlots
  14. # Set the reference plane.
  15. TbClusterPlots().ReferencePlane = 3
  16. # Widen the range of the difference histograms if needed.
  17. TbClusterPlots().ParametersDifferenceXY = ('', -10., 10., 200)
  18.  
  19. from Configurables import TbAlignment
  20. TbAlignment().AlignmentTechnique = "survey"
  21.