Newer
Older
TB_Chris / Kepler / options / .svn / text-base / batch.py.svn-base
@iaro iaro on 9 May 2016 689 bytes first attempt of automated anal
  1. from Gaudi.Configuration import *
  2. from Configurables import Kepler
  3.  
  4. from Configurables import TbEventBuilder
  5. TbEventBuilder().MinPlanesWithHits = 2
  6. TbEventBuilder().PrintFreq = 100
  7. TbEventBuilder().Monitoring = True
  8. Kepler().EvtMax=5000
  9.  
  10. Kepler().AlignmentFile = "eos/lhcb/testbeam/velo/timepix3/Dec2014/RootFiles/Run4012/Conditions/Alignment4012.dat"
  11.  
  12. from Configurables import TbTracking
  13. TbTracking().PrintConfiguration = True
  14. TbTracking().MinNClusters = 3
  15.  
  16. TbTracking().SearchRadius = 0.5
  17. TbTracking().VolumeAngle = 0.2
  18. TbTracking().TimeWindow = 75
  19. TbTracking().Monitoring = False
  20. TbTracking().SearchPlanes = [2,3]
  21. TbTracking().MaskedPlanes = []
  22.  
  23. from Configurables import TbTrackPlots