This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| universe = vanilla | |
| executable = job.sh | |
| log = /dev/null | |
| should_transfer_files = YES | |
| transfer_input_files = job.sh | |
| when_to_transfer_output = ON_EXIT | |
| output = out.txt | |
| error = err.txt | |
| notification = Never | |
| initialdir = /afs/cern.ch/user/m/mrieger/htctest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # coding: utf-8 | |
| # python imports | |
| import os | |
| import cherrypy | |
| class Server(object): |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding: utf-8 | |
| """ | |
| Pseudo code for generating deterministic event and jet seeds, | |
| to be used in random number generators with consistent output. | |
| The seeds use the entire uint64 space and are proven to be | |
| uniformly distributed using bijective hashing. | |
| It requires a list of the first 200 primes plus some event |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Interface for accessing Numpy's random number generators and configurable | |
| bit generators via its C API. Usage example in main.cpp below. | |
| Author: Marcel Rieger | |
| */ | |
| #include <string> | |
| #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION |
OlderNewer