Warning, /geant4/examples/extended/eventgenerator/exgps/stattest/conf.qa is written in an unsupported language. File is not indexed.
0001 #-*-python-*-
0002 # Configuration file for QA tests
0003 # This file should be a valid python file.
0004 # To test if format is correct, tye:
0005 # python testconf.qa
0006 # no output is produced if the code is correct
0007 #
0008 # The general format is:
0009 # variable = value
0010 # There are few top-level variables: Binned and UnBinned for
0011 # binned and unbinned distributions respectively.
0012 # The value of the top-level variables is a dictionary of variable:values pairs.
0013 # See the following file as an example: <StatTest main Direcotry>/example/testconf.qa
0014
0015 #Configuration for Binned distributions
0016 #These are tests to be performed on Histograms
0017 #Binned = { 'Histos':[{'Name':'hsito/fake'}] }
0018
0019 #No TTrees to check
0020 UnBinned = {
0021 'DefaultTestName':'KolmogorovSmirnovTest',
0022 'DefaultThresholds':[0.05,0.1],
0023 'DataSet' : [
0024 {'Name':'/ntuple/101:Ekin','Type':'DOUBLE','Size':1},
0025 #{'Name':'/ntuple/MyTuple:PosX','Type':'DOUBLE','Size':1},
0026 #{'Name':'/ntuple/101:posY','Type':'DOUBLE','Size':1},
0027 #{'Name':'/ntuple/101:posZ','Type':'DOUBLE','Size':1},
0028 {'Name':'/ntuple/101:dirTheta','Type':'DOUBLE','Size':1},
0029 {'Name':'/ntuple/101:dirPhi','Type':'DOUBLE','Size':1},
0030 #{'Name':'/ntuple/MyTuple:weight','Type':'DOUBLE','Size':1},
0031 ]
0032 }