#!/usr/bin/env python from __future__ import print_function from sys import exit try : import ROOT except ImportError: print ("failed to import root - check PYTHONPATH and if root") print ("uses the right python version") exit(1) try : import aa except ImportError: print ("failed to iport aanet library - check build and PYTHONPATH") exit(2) print ( __file__, "success") exit(0)