Revision 4860385802bf5068f5daab67c72179501a7d0701 authored by Andre Lessa on 09 August 2018, 16:35:29 UTC, committed by Andre Lessa on 09 August 2018, 16:35:29 UTC
1 parent d718169
Raw File
Example.py
#!/usr/bin/env python3

from __future__ import print_function
"""
.. module:: Example
   :synopsis: Basic main file example for using SModelS.   
   This file must be run under the installation folder.
"""
""" Import basic functions (this file must be executed in the installation folder) """

from imp import reload
from smodels.tools import runtime
from smodels import particlesLoader
from smodels.theory import slhaDecomposer,lheDecomposer
from smodels.tools.physicsUnits import fb, GeV, TeV
from smodels.theory.theoryPrediction import theoryPredictionsFor
from smodels.experiment.databaseObj import Database
from smodels.tools import coverage
from smodels.tools.smodelsLogging import setLogLevel
setLogLevel("info")
# Set the path to the database
database = Database("http://smodels.hephy.at/database/official120")

def main():
    """
    Main program. Displays basic use case.
    """
    #Define your model (list of rEven and rOdd particles)
    runtime.modelFile = 'smodels.share.models.mssm' 
    reload(particlesLoader) #Make sure all the model particles are up-to-date
    
    # Path to input file (either a SLHA or LHE file)
    slhafile = 'inputFiles/slha/lightEWinos.slha'
    lhefile = 'inputFiles/lhe/gluino_squarks.lhe'

    # Set main options for decomposition
    sigmacut = 0.3 * fb
    mingap = 5. * GeV

    # Decompose model (use slhaDecomposer for SLHA input or lheDecomposer for LHE input)
    slhaInput = True
    if slhaInput:
        toplist = slhaDecomposer.decompose(slhafile, sigmacut, doCompress=True, doInvisible=True, minmassgap=mingap)
    else:
        toplist = lheDecomposer.decompose(lhefile, doCompress=True,doInvisible=True, minmassgap=mingap)
    
    # Access basic information from decomposition, using the topology list and topology objects:
    print ( "\n Decomposition Results: " )
    print ( "\t  Total number of topologies: %i " %len(toplist) )
    nel = sum([len(top.elementList) for top in toplist])
    print ( "\t  Total number of elements = %i " %nel )
    #Print information about the m-th topology:
    m = 3
    top = toplist[m]
    print ( "\t\t %i-th topology  = " %m,top,"with total cross section =",top.getTotalWeight() )
    #Print information about the n-th element in the m-th topology:
    n = 0
    el = top.elementList[n]
    print ( "\t\t %i-th element from %i-th topology  = " %(n,m),el, end="" )
    print ( "\n\t\t\twith final states =",el.getFinalStates(),"\n\t\t\twith cross section =",el.weight,"\n\t\t\tand masses = ",el.getMasses() )
            
    # Load the experimental results to be used.
    # In this case, all results are employed.
    listOfExpRes = database.getExpResults()

    # Print basic information about the results loaded.
    # Count the number of loaded UL and EM experimental results:
    nUL, nEM = 0, 0
    for exp in listOfExpRes:
        expType = exp.getValuesFor('dataType')[0]
        if expType == 'upperLimit':
            nUL += 1
        elif  expType == 'efficiencyMap':
            nEM += 1
    print ( "\n Loaded Database with %i UL results and %i EM results " %(nUL,nEM) )


    # Compute the theory predictions for each experimental result and print them:
    print("\n Theory Predictions and Constraints:")
    rmax = 0.
    bestResult = None
    for expResult in listOfExpRes:
        predictions = theoryPredictionsFor(expResult, toplist)
        if not predictions: continue # Skip if there are no constraints from this result
        print('\n %s ' %expResult.globalInfo.id)
        for theoryPrediction in predictions:
            dataset = theoryPrediction.dataset
            datasetID = dataset.dataInfo.dataId            
            mass = theoryPrediction.mass
            txnames = [str(txname) for txname in theoryPrediction.txnames]
            PIDs =  theoryPrediction.PIDs         
            print ( "------------------------" )
            print ( "Dataset = ",datasetID )   #Analysis name
            print ( "TxNames = ",txnames )  
            print ( "Prediction Mass = ",mass )   #Value for average cluster mass (average mass of the elements in cluster)
            print ( "Prediction PIDs = ",PIDs )   #Value for average cluster mass (average mass of the elements in cluster)
            print ( "Theory Prediction = ",theoryPrediction.xsection )  #Signal cross section
            print ( "Condition Violation = ",theoryPrediction.conditions ) #Condition violation values
              
            # Get the corresponding upper limit:
            print ( "UL for theory prediction = ",theoryPrediction.upperLimit )

            # Compute the r-value
            r = theoryPrediction.getRValue()
            print ( "r = ",r )
            #Compute likelihhod and chi^2 for EM-type results:
            if dataset.dataInfo.dataType == 'efficiencyMap':
                theoryPrediction.computeStatistics()
                print ( 'Chi2, likelihood=', theoryPrediction.chi2, theoryPrediction.likelihood )
            if r > rmax:
                rmax = r
                bestResult = expResult.globalInfo.id
            
    # Print the most constraining experimental result
    print ( "\nThe largest r-value (theory/upper limit ratio) is ",rmax )
    if rmax > 1.:
        print ( "(The input model is likely excluded by %s)" %bestResult )
    else:
        print ( "(The input model is not excluded by the simplified model results)" )
      
    #Find out missing topologies for sqrts=8*TeV:
    uncovered = coverage.Uncovered(toplist,sqrts=8.*TeV)
    #Print uncovered cross-sections:
    print ( "\nTotal missing topology cross section (fb): %10.3E\n" %(uncovered.getMissingXsec()) )
    print ( "Total cross section where we are outside the mass grid (fb): %10.3E\n" %(uncovered.getOutOfGridXsec()) )
    print ( "Total cross section in long cascade decays (fb): %10.3E\n" %(uncovered.getLongCascadeXsec()) )
    print ( "Total cross section in decays with asymmetric branches (fb): %10.3E\n" %(uncovered.getAsymmetricXsec()) )
    
    #Print some of the missing topologies:
    print ( 'Missing topologies (up to 3):' )
    for topo in uncovered.missingTopos.topos[:3]:
        print ( 'Topology:',topo.topo )
        print ( 'Contributing elements (up to 2):' )
        for el in topo.contributingElements[:2]:
            print ( el,'cross-section (fb):', el.missingX )
    
    #Print elements with long cascade decay:
    print ( '\nElements outside the grid (up to 2):' )
    for topo in uncovered.outsideGrid.topos[:2]:
        print ( 'Topology:',topo.topo )
        print ( 'Contributing elements (up to 4):' )
        for el in topo.contributingElements[:4]:
            print ( el,'cross-section (fb):', el.missingX )
            print ( '\tmass:',el.getMasses() )
        
        
if __name__ == '__main__':
    main()
back to top