Crombie Tools
HistAnalysis.py
Go to the documentation of this file.
1 from .. import Load
2 
3 newHistAnalysis = Load('HistAnalysis')
4 histAnalysis = newHistAnalysis()
5 
6 
7 def SetupFromEnv(analyzer=histAnalysis):
8  """Sets up a HistAnalysis for the user by reading the CrombieAnalysisConfig.
9  @param analyzer is the HistAnalysis instance that will be modified.
10  """
11 
12  from ..CommonTools.FileConfigReader import SetupConfigFromEnv
13 
14  SetupConfigFromEnv(analyzer)