Crombie Tools
FitTools.py
Go to the documentation of this file.
1 from .. import Load
2 
3 newFitTools = Load('FitTools')
4 fitTools = newFitTools()
5 
6 
7 def SetupFromEnv(analyzer=fitTools):
8  """Sets up a FitTools for the user by reading the CrombieAnalysisConfig.
9  @param analyzer is the FitTools instance that will be modified.
10  @todo rework these setup functions into a wrapper class
11  """
12 
13  from ..CommonTools.FileConfigReader import SetupConfigFromEnv
14 
15  SetupConfigFromEnv(analyzer)