ATLAS Offline Software
dcsc.py
Go to the documentation of this file.
1 #! /usr/bin/env python3
2 
3 from DCSCalculator2.main import main
4 
5 if __name__ == "__main__":
6  import sys
7 
8  # Make a copy of argv and empty the system argv to prevent
9  # ROOT from intercepting arguments. This might be necessary is main() is
10  # called from elsewhere
11  our_argv = sys.argv[:]
12  #sys.argv[:] = []
13  #sys.original_argv = our_argv
14 
15  main(our_argv)
main
int main(int, char **)
Main class for all the CppUnit test classes
Definition: CppUnit_SGtestdriver.cxx:141