Load the browser

In [1]:
# Set up the path to SModelS installation folder
import sys; sys.path.append("."); import smodels_paths
In [2]:
from smodels.tools import databaseBrowser
# First load the browser and check the total number of results loaded
browser = databaseBrowser.Browser("http://smodels.hephy.at/database/official113")
print (len(browser) )
loading >...................................................done.
95

Select only efficiency map results:

In [3]:
# Select only efficiency map results:
browser.selectExpResultsWith(dataType ='efficiencyMap')
# List the name of results loaded:
print ( len(browser) )
19
In [4]:
# Now check the first result:
print ( browser[0] )
ATLAS-SUSY-2015-02: SR1,SR2,SR3(3):T2tt(1)
In [5]:
# Now restore all results to the browser:
browser.loadAllResults()
print ( len(browser) )
95

Select only upper limit results:

In [6]:
# Select only efficiency map results:
browser.selectExpResultsWith(dataType='upperLimit')
# List the name of results loaded:
print ( len(browser) )
76
In [7]:
# Now check the first result:
print ( browser[0] )
ATLAS-SUSY-2015-01:(0):T2bb(1)
In [ ]: