ATLAS Offline Software
Loading...
Searching...
No Matches
dcsc.py
Go to the documentation of this file.
1#! /usr/bin/env python3
2
3from DCSCalculator2.main import main
4
5if __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)
int main()
Definition hello.cxx:18