-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwatchmakers.py
More file actions
executable file
·37 lines (26 loc) · 904 Bytes
/
watchmakers.py
File metadata and controls
executable file
·37 lines (26 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/python
from watchmakers.load import *
from watchmakers.io_operations import *
from watchmakers.analysis import *
from watchmakers.sensitivity import *
from watchmakers.data import *
######################## Start of main function ###########################
if __name__ == "__main__":
print docstring
if arguments['-v']:
print arguments
# print defaultValues
print ""
if arguments['-m']:
generateMacrosNew(int(arguments['-N']),int(arguments['-e']))
if arguments['-j']:
generateJobsNew(int(arguments['-N']),arguments)
if arguments['-M']:
mergeNtupleFilesNew(arguments)
if arguments['--histograms']:
sensitivityMapPass2New()
if arguments['--evalRate']:
readEfficiencyHistogram()
if arguments['--findRate']:
findRate()
######################## Waba Luba Dub Dub!! ###########################