You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument('--pandas', '-pd',action='store_true',help="Store the whole dataset (no event or threshold cut) in a csv")
91
100
parser.add_argument('--proxy','-p', help='Allow to parse a x509 proxy if needed', type=str, default=None)
92
101
parser.add_argument('--site','-s', help='Only data at specific site', type=str, default=None)
102
+
parser.add_argument('--lumis','-l', help='Output file for lumi ranges for the selected files (if black no lumiranges calculated)', type=str, default=None)
93
103
parser.add_argument('--precheck','-pc', action='store_true', help='Check run per run before building the dataframes, to avoid huge caching.')
94
104
args=parser.parse_args()
95
105
@@ -106,6 +116,7 @@ def no_intersection():
106
116
threshold=args.threshold
107
117
outfile=args.outfile
108
118
site=args.site
119
+
lumis=args.lumis
109
120
110
121
## get the greatest golden json
111
122
year=dataset.split("Run")[1][2:4] # from 20XX to XX
0 commit comments