forked from BristolTopGroup/AnalysisSoftware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
start_2011_44X_Analysis.sh
executable file
·602 lines (560 loc) · 59.6 KB
/
start_2011_44X_Analysis.sh
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
#!/bin/bash
#setup the machine you are using
machine=soolin
#machine="soolin"
#machine="stardust"
if [ ${machine} == "soolin" ]
then
toolsFolder=BristolAnalysis/Tools/
exe=BAT
elif [ ${machine} == "dice" ]
then
toolsFolder=./
exe=./AnalysisSoftware
elif [ ${machine} == "stardust" ]
then
toolsFolder=/storage/Workspace/Analysis/AnalysisTools/
exe=${toolsFolder}Release/AnalysisTools
TQAFPath="--TQAFPath=../"
fi
export toolsFolder=${toolsFolder}
export exe=${exe}
export TQAFPath=${TQAFPath}
sample="QCD_20to30_BCtoE" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_BCtoE_central.log &
sample="QCD_20to30_BCtoE" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_BCtoE_Electron_up.log &
sample="QCD_20to30_BCtoE" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_BCtoE_Electron_down.log &
sample="QCD_20to30_BCtoE" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_BCtoE_Muon_up.log &
sample="QCD_20to30_BCtoE" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_fg.py ${TQAFPath} &> QCD_20to30_BCtoE_Muon_down.log &
sample="QCD_20to30_BCtoE" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_BCtoE_JES_up.log &
sample="QCD_20to30_BCtoE" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_BCtoE_JES_down.log &
sample="QCD_20to30_BCtoE" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_BCtoE_JER_up.log &
wait
sample="QCD_20to30_BCtoE" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_BCtoE_JER_down.log &
sample="QCD_20to30_BCtoE" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_BCtoE_PU_down.log &
sample="QCD_20to30_BCtoE" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_BCtoE_PU_up.log &
sample="QCD_20to30_BCtoE" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_BCtoE_BJet_down.log &
sample="QCD_20to30_BCtoE" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_BCtoE_BJet_up.log &
sample="QCD_20to30_BCtoE" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_BCtoE_LightJet_down.log &
sample="QCD_20to30_BCtoE" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_BCtoE_LightJet_up.log &
wait
sample="QCD_30to80_BCtoE" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_BCtoE_central.log &
sample="QCD_30to80_BCtoE" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_BCtoE_Electron_up.log &
sample="QCD_30to80_BCtoE" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_BCtoE_Electron_down.log &
sample="QCD_30to80_BCtoE" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_BCtoE_Muon_up.log &
sample="QCD_30to80_BCtoE" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_BCtoE_Muon_down.log &
sample="QCD_30to80_BCtoE" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_BCtoE_JES_up.log &
sample="QCD_30to80_BCtoE" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_BCtoE_JES_down.log &
sample="QCD_30to80_BCtoE" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_BCtoE_JER_up.log &
wait
sample="QCD_30to80_BCtoE" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_BCtoE_JER_down.log &
sample="QCD_30to80_BCtoE" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_BCtoE_PU_down.log &
sample="QCD_30to80_BCtoE" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_BCtoE_PU_up.log &
sample="QCD_30to80_BCtoE" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_BCtoE_BJet_down.log &
sample="QCD_30to80_BCtoE" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_BCtoE_BJet_up.log &
sample="QCD_30to80_BCtoE" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_BCtoE_LightJet_down.log &
sample="QCD_30to80_BCtoE" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_BCtoE_LightJet_up.log &
wait
sample="QCD_80to170_BCtoE" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_BCtoE_central.log &
sample="QCD_80to170_BCtoE" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_BCtoE_Electron_up.log &
sample="QCD_80to170_BCtoE" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_BCtoE_Electron_down.log &
sample="QCD_80to170_BCtoE" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_BCtoE_Muon_up.log &
sample="QCD_80to170_BCtoE" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_BCtoE_Muon_down.log &
sample="QCD_80to170_BCtoE" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_BCtoE_JES_up.log &
sample="QCD_80to170_BCtoE" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_BCtoE_JES_down.log &
sample="QCD_80to170_BCtoE" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_BCtoE_JER_up.log &
wait
sample="QCD_80to170_BCtoE" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_BCtoE_JER_down.log &
sample="QCD_80to170_BCtoE" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_BCtoE_PU_down.log &
sample="QCD_80to170_BCtoE" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_BCtoE_PU_up.log &
sample="QCD_80to170_BCtoE" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_BCtoE_BJet_down.log &
sample="QCD_80to170_BCtoE" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_BCtoE_BJet_up.log &
sample="QCD_80to170_BCtoE" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_BCtoE_LightJet_down.log &
sample="QCD_80to170_BCtoE" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_BCtoE_LightJet_up.log &
wait
sample="QCD_20to30_EMEnriched" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_EMEnriched_central.log &
sample="QCD_20to30_EMEnriched" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_EMEnriched_Electron_up.log &
sample="QCD_20to30_EMEnriched" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_EMEnriched_Electron_down.log &
sample="QCD_20to30_EMEnriched" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_EMEnriched_Muon_up.log &
sample="QCD_20to30_EMEnriched" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_EMEnriched_Muon_down.log &
sample="QCD_20to30_EMEnriched" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_EMEnriched_JES_up.log &
sample="QCD_20to30_EMEnriched" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_EMEnriched_JES_down.log &
sample="QCD_20to30_EMEnriched" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_EMEnriched_JER_up.log &
wait
sample="QCD_20to30_EMEnriched" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_EMEnriched_JER_down.log &
sample="QCD_20to30_EMEnriched" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_EMEnriched_PU_down.log &
sample="QCD_20to30_EMEnriched" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_EMEnriched_PU_up.log &
sample="QCD_20to30_EMEnriched" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_EMEnriched_BJet_down.log &
sample="QCD_20to30_EMEnriched" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_EMEnriched_BJet_up.log &
sample="QCD_20to30_EMEnriched" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_EMEnriched_LightJet_down.log &
sample="QCD_20to30_EMEnriched" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_20to30_EMEnriched_LightJet_up.log &
wait
sample="QCD_30to80_EMEnriched" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_EMEnriched_central.log &
sample="QCD_30to80_EMEnriched" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_EMEnriched_Electron_up.log &
sample="QCD_30to80_EMEnriched" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_EMEnriched_Electron_down.log &
sample="QCD_30to80_EMEnriched" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_EMEnriched_Muon_up.log &
sample="QCD_30to80_EMEnriched" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_EMEnriched_Muon_down.log &
sample="QCD_30to80_EMEnriched" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_EMEnriched_JES_up.log &
sample="QCD_30to80_EMEnriched" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_EMEnriched_JES_down.log &
sample="QCD_30to80_EMEnriched" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_EMEnriched_JER_up.log &
wait
sample="QCD_30to80_EMEnriched" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_EMEnriched_JER_down.log &
sample="QCD_30to80_EMEnriched" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_EMEnriched_PU_down.log &
sample="QCD_30to80_EMEnriched" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_EMEnriched_PU_up.log &
sample="QCD_30to80_EMEnriched" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_EMEnriched_BJet_down.log &
sample="QCD_30to80_EMEnriched" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_EMEnriched_BJet_up.log &
sample="QCD_30to80_EMEnriched" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_EMEnriched_LightJet_down.log &
sample="QCD_30to80_EMEnriched" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_30to80_EMEnriched_LightJet_up.log &
wait
sample="QCD_80to170_EMEnriched" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_EMEnriched_central.log &
sample="QCD_80to170_EMEnriched" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_EMEnriched_Electron_up.log &
sample="QCD_80to170_EMEnriched" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_EMEnriched_Electron_down.log &
sample="QCD_80to170_EMEnriched" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_EMEnriched_Muon_up.log &
sample="QCD_80to170_EMEnriched" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_EMEnriched_Muon_down.log &
sample="QCD_80to170_EMEnriched" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_EMEnriched_JES_up.log &
sample="QCD_80to170_EMEnriched" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_EMEnriched_JES_down.log &
sample="QCD_80to170_EMEnriched" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_EMEnriched_JER_up.log &
wait
sample="QCD_80to170_EMEnriched" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_EMEnriched_JER_down.log &
sample="QCD_80to170_EMEnriched" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_EMEnriched_PU_down.log &
sample="QCD_80to170_EMEnriched" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_EMEnriched_PU_up.log &
sample="QCD_80to170_EMEnriched" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_EMEnriched_BJet_down.log &
sample="QCD_80to170_EMEnriched" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_EMEnriched_BJet_up.log &
sample="QCD_80to170_EMEnriched" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_EMEnriched_LightJet_down.log &
sample="QCD_80to170_EMEnriched" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_80to170_EMEnriched_LightJet_up.log &
wait
sample="GJets_40To100" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_40To100_central.log &
sample="GJets_40To100" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_40To100_Electron_up.log &
sample="GJets_40To100" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_40To100_Electron_down.log &
sample="GJets_40To100" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_40To100_Muon_up.log &
sample="GJets_40To100" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_40To100_Muon_down.log &
sample="GJets_40To100" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_40To100_JES_up.log &
sample="GJets_40To100" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_40To100_JES_down.log &
sample="GJets_40To100" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_40To100_JER_up.log &
wait
sample="GJets_40To100" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_40To100_JER_down.log &
sample="GJets_40To100" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_40To100_PU_down.log &
sample="GJets_40To100" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_40To100_BJet_down.log &
sample="GJets_40To100" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_40To100_PU_up.log &
sample="GJets_40To100" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_40To100_BJet_up.log &
sample="GJets_40To100" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_40To100_LightJet_down.log &
sample="GJets_40To100" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_40To100_LightJet_up.log &
wait
sample="GJets_100To200" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_100To200_central.log &
sample="GJets_100To200" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_100To200_Electron_up.log &
sample="GJets_100To200" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_100To200_Electron_down.log &
sample="GJets_100To200" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_100To200_Muon_up.log &
sample="GJets_100To200" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_100To200_Muon_down.log &
sample="GJets_100To200" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_100To200_JES_up.log &
sample="GJets_100To200" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_100To200_JES_down.log &
sample="GJets_100To200" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_100To200_JER_up.log &
wait
sample="GJets_100To200" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_100To200_JER_down.log &
sample="GJets_100To200" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_100To200_PU_down.log &
sample="GJets_100To200" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_100To200_PU_up.log &
sample="GJets_100To200" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_100To200_BJet_down.log &
sample="GJets_100To200" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_100To200_BJet_up.log &
sample="GJets_100To200" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_100To200_LightJet_down.log &
sample="GJets_100To200" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_100To200_LightJet_up.log &
wait
sample="GJets_200" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_200_central.log &
sample="GJets_200" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_200_Electron_up.log &
sample="GJets_200" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_200_Electron_down.log &
sample="GJets_200" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_200_Muon_up.log &
sample="GJets_200" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_200_Muon_down.log &
sample="GJets_200" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_200_JES_up.log &
sample="GJets_200" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_200_JES_down.log &
sample="GJets_200" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_200_JER_up.log &
wait
sample="GJets_200" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_200_JER_down.log &
sample="GJets_200" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_200_PU_down.log &
sample="GJets_200" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_200_PU_up.log &
sample="GJets_200" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_200_BJet_down.log &
sample="GJets_200" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_200_BJet_up.log &
sample="GJets_200" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_200_LightJet_down.log &
sample="GJets_200" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> GJets_200_LightJet_up.log &
wait
sample="QCD_Mu" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_Mu_central.log &
sample="QCD_Mu" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_Mu_Electron_up.log &
sample="QCD_Mu" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_Mu_Electron_down.log &
sample="QCD_Mu" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_Mu_Muon_up.log &
sample="QCD_Mu" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_Mu_Muon_down.log &
sample="QCD_Mu" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_Mu_JES_up.log &
sample="QCD_Mu" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_Mu_JES_down.log &
sample="QCD_Mu" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_Mu_JER_up.log &
wait
sample="QCD_Mu" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_Mu_JER_down.log &
sample="QCD_Mu" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_Mu_PU_down.log &
sample="QCD_Mu" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_Mu_PU_up.log &
sample="QCD_Mu" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_Mu_BJet_down.log &
sample="QCD_Mu" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_Mu_BJet_up.log &
sample="QCD_Mu" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_Mu_LightJet_down.log &
sample="QCD_Mu" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> QCD_Mu_LightJet_up.log &
wait
sample="W1Jet" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W1Jet_central.log &
sample="W1Jet" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W1Jet_Electron_up.log &
sample="W1Jet" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W1Jet_Electron_down.log &
sample="W1Jet" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W1Jet_Muon_up.log &
sample="W1Jet" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W1Jet_Muon_down.log &
sample="W1Jet" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W1Jet_JES_up.log &
sample="W1Jet" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W1Jet_JES_down.log &
sample="W1Jet" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W1Jet_JER_up.log &
wait
sample="W1Jet" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W1Jet_JER_down.log &
sample="W1Jet" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W1Jet_PU_down.log &
sample="W1Jet" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W1Jet_PU_up.log &
sample="W1Jet" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W1Jet_BJet_down.log &
sample="W1Jet" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W1Jet_BJet_up.log &
sample="W1Jet" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W1Jet_LightJet_down.log &
sample="W1Jet" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W1Jet_LightJet_up.log &
wait
sample="W2Jets" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W2Jets_central.log &
sample="W2Jets" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W2Jets_Electron_up.log &
sample="W2Jets" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W2Jets_Electron_down.log &
sample="W2Jets" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W2Jets_Muon_up.log &
sample="W2Jets" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W2Jets_Muon_down.log &
sample="W2Jets" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W2Jets_JES_up.log &
sample="W2Jets" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W2Jets_JES_down.log &
sample="W2Jets" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W2Jets_JER_up.log &
wait
sample="W2Jets" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W2Jets_JER_down.log &
sample="W2Jets" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W2Jets_PU_down.log &
sample="W2Jets" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W2Jets_PU_up.log &
sample="W2Jets" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W2Jets_BJet_down.log &
sample="W2Jets" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W2Jets_BJet_up.log &
sample="W2Jets" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W2Jets_LightJet_down.log &
sample="W2Jets" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W2Jets_LightJet_up.log &
wait
sample="W3Jets" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W3Jets_central.log &
sample="W3Jets" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W3Jets_Electron_up.log &
sample="W3Jets" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W3Jets_Electron_down.log &
sample="W3Jets" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W3Jets_Muon_up.log &
sample="W3Jets" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W3Jets_Muon_down.log &
sample="W3Jets" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W3Jets_JES_up.log &
sample="W3Jets" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W3Jets_JES_down.log &
sample="W3Jets" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W3Jets_JER_up.log &
wait
sample="W3Jets" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W3Jets_JER_down.log &
sample="W3Jets" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W3Jets_PU_down.log &
sample="W3Jets" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W3Jets_PU_up.log &
sample="W3Jets" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W3Jets_BJet_down.log &
sample="W3Jets" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W3Jets_BJet_up.log &
sample="W3Jets" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W3Jets_LightJet_down.log &
sample="W3Jets" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W3Jets_LightJet_up.log &
wait
sample="W4Jets" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W4Jets_central.log &
sample="W4Jets" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W4Jets_Electron_up.log &
sample="W4Jets" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W4Jets_Electron_down.log &
sample="W4Jets" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W4Jets_Muon_up.log &
sample="W4Jets" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W4Jets_Muon_down.log &
sample="W4Jets" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W4Jets_JES_up.log &
sample="W4Jets" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W4Jets_JES_down.log &
sample="W4Jets" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W4Jets_JER_up.log &
wait
sample="W4Jets" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W4Jets_JER_down.log &
sample="W4Jets" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W4Jets_PU_down.log &
sample="W4Jets" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W4Jets_PU_up.log &
sample="W4Jets" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W4Jets_BJet_down.log &
sample="W4Jets" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W4Jets_BJet_up.log &
sample="W4Jets" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W4Jets_LightJet_down.log &
sample="W4Jets" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> W4Jets_LightJet_up.log &
wait
sample="DYJetsToLL" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> DYJetsToLL_central.log &
sample="DYJetsToLL" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> DYJetsToLL_Electron_up.log &
sample="DYJetsToLL" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> DYJetsToLL_Electron_down.log &
sample="DYJetsToLL" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> DYJetsToLL_Muon_up.log &
sample="DYJetsToLL" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> DYJetsToLL_Muon_down.log &
sample="DYJetsToLL" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> DYJetsToLL_JES_up.log &
sample="DYJetsToLL" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> DYJetsToLL_JES_down.log &
sample="DYJetsToLL" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> DYJetsToLL_JER_up.log &
wait
sample="DYJetsToLL" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> DYJetsToLL_JER_down.log &
sample="DYJetsToLL" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> DYJetsToLL_PU_down.log &
sample="DYJetsToLL" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> DYJetsToLL_PU_up.log &
sample="DYJetsToLL" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> DYJetsToLL_BJet_down.log &
sample="DYJetsToLL" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> DYJetsToLL_BJet_up.log &
sample="DYJetsToLL" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> DYJetsToLL_LightJet_down.log &
sample="DYJetsToLL" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> DYJetsToLL_LightJet_up.log &
wait
#sample="TTbarZIncl" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarZIncl_central.log &
#sample="TTbarZIncl" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarZIncl_JES_up.log &
#sample="TTbarZIncl" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarZIncl_JES_down.log &
#sample="TTbarZIncl" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarZIncl_JER_up.log &
#sample="TTbarZIncl" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarZIncl_JER_down.log &
#sample="TTbarZIncl" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarZIncl_PU_down.log &
#sample="TTbarZIncl" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarZIncl_PU_up.log &
#sample="TTbarZIncl" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarZIncl_BJet_down.log &
#sample="TTbarZIncl" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarZIncl_BJet_up.log &
#sample="TTbarZIncl" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarZIncl_LightJet_down.log &
#sample="TTbarZIncl" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarZIncl_LightJet_up.log &
#sample="TTbarInclWIncl" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarInclWIncl_central.log &
#sample="TTbarInclWIncl" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarInclWIncl_JES_up.log &
#sample="TTbarInclWIncl" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarInclWIncl_JES_down.log &
#sample="TTbarInclWIncl" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarInclWIncl_JER_up.log &
#sample="TTbarInclWIncl" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarInclWIncl_JER_down.log &
#sample="TTbarInclWIncl" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarInclWIncl_PU_down.log &
#sample="TTbarInclWIncl" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarInclWIncl_PU_up.log &
#sample="TTbarInclWIncl" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarInclWIncl_BJet_down.log &
#sample="TTbarInclWIncl" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarInclWIncl_BJet_up.log &
#sample="TTbarInclWIncl" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarInclWIncl_LightJet_down.log &
#sample="TTbarInclWIncl" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTbarInclWIncl_LightJet_up.log &
#sample="WW" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WW_central.log &
#sample="WW" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WW_JES_up.log &
#sample="WW" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WW_JES_down.log &
#sample="WW" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WW_JER_up.log &
#sample="WW" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WW_JER_down.log &
#sample="WW" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WW_PU_down.log &
#sample="WW" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WW_PU_up.log &
#sample="WW" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WW_BJet_down.log &
#sample="WW" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WW_BJet_up.log &
#sample="WW" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WW_LightJet_down.log &
#sample="WW" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WW_LightJet_up.log &
#sample="WZ" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WZ_central.log &
#sample="WZ" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WZ_JES_up.log &
#sample="WZ" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WZ_JES_down.log &
#sample="WZ" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WZ_JER_up.log &
#sample="WZ" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WZ_JER_down.log &
#sample="WZ" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WZ_PU_down.log &
#sample="WZ" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WZ_PU_up.log &
#sample="WZ" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WZ_BJet_down.log &
#sample="WZ" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WZ_BJet_up.log &
#sample="WZ" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WZ_LightJet_down.log &
#sample="WZ" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WZ_LightJet_up.log &
#sample="ZZ" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> ZZ_central.log &
#sample="ZZ" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> ZZ_JES_up.log &
#sample="ZZ" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> ZZ_JES_down.log &
#sample="ZZ" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> ZZ_JER_up.log &
#sample="ZZ" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> ZZ_JER_down.log &
#sample="ZZ" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> ZZ_PU_down.log &
#sample="ZZ" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> ZZ_PU_up.log &
#sample="ZZ" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> ZZ_BJet_down.log &
#sample="ZZ" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> ZZ_BJet_up.log &
#sample="ZZ" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> ZZ_LightJet_down.log &
#sample="ZZ" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> ZZ_LightJet_up.log &
sample="T_tW" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_tW_central.log &
sample="T_tW" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_tW_Electron_up.log &
sample="T_tW" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_tW_Electron_down.log &
sample="T_tW" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_tW_Muon_up.log &
sample="T_tW" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_tW_Muon_down.log &
sample="T_tW" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_tW_JES_up.log &
sample="T_tW" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_tW_JES_down.log &
sample="T_tW" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_tW_JER_up.log &
wait
sample="T_tW" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_tW_JER_down.log &
sample="T_tW" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_tW_PU_down.log &
sample="T_tW" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_tW_PU_up.log &
sample="T_tW" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_tW_BJet_down.log &
sample="T_tW" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_tW_BJet_up.log &
sample="T_tW" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_tW_LightJet_down.log &
sample="T_tW" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_tW_LightJet_up.log &
wait
sample="T_t" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_t_central.log &
sample="T_t" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_t_Electron_up.log &
sample="T_t" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_t_Electron_down.log &
sample="T_t" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_t_Muon_up.log &
sample="T_t" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_t_Muon_down.log &
sample="T_t" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_t_JES_up.log &
sample="T_t" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_t_JES_down.log &
sample="T_t" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_t_JER_up.log &
wait
sample="T_t" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_t_JER_down.log &
sample="T_t" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_t_PU_down.log &
sample="T_t" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_t_PU_up.log &
sample="T_t" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_t_BJet_down.log &
sample="T_t" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_t_BJet_up.log &
sample="T_t" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_t_LightJet_down.log &
sample="T_t" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_t_LightJet_up.log &
wait
sample="T_s" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_s_central.log &
sample="T_s" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_s_Electron_up.log &
sample="T_s" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_s_Electron_down.log &
sample="T_s" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_s_Muon_up.log &
sample="T_s" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_s_Muon_down.log &
sample="T_s" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_s_JES_up.log &
sample="T_s" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_s_JES_down.log &
sample="T_s" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_s_JER_up.log &
wait
sample="T_s" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_s_JER_down.log &
sample="T_s" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_s_PU_down.log &
sample="T_s" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_s_PU_up.log &
sample="T_s" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_s_BJet_down.log &
sample="T_s" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_s_BJet_up.log &
sample="T_s" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_s_LightJet_down.log &
sample="T_s" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> T_s_LightJet_up.log &
wait
sample="Tbar_tW" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_tW_central.log &
sample="Tbar_tW" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_tW_Electron_up.log &
sample="Tbar_tW" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_tW_Electron_down.log &
sample="Tbar_tW" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_tW_Muon_up.log &
sample="Tbar_tW" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_tW_Muon_down.log &
sample="Tbar_tW" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_tW_JES_up.log &
sample="Tbar_tW" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_tW_JES_down.log &
sample="Tbar_tW" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_tW_JER_up.log &
wait
sample="Tbar_tW" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_tW_JER_down.log &
sample="Tbar_tW" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_tW_PU_down.log &
sample="Tbar_tW" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_tW_PU_up.log &
sample="Tbar_tW" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_tW_BJet_down.log &
sample="Tbar_tW" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_tW_BJet_up.log &
sample="Tbar_tW" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_tW_LightJet_down.log &
sample="Tbar_tW" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_tW_LightJet_up.log &
wait
sample="Tbar_t" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_t_central.log &
sample="Tbar_t" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_t_Electron_up.log &
sample="Tbar_t" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_t_Electron_down.log &
sample="Tbar_t" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_t_Muon_up.log &
sample="Tbar_t" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_t_Muon_down.log &
sample="Tbar_t" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_t_JES_up.log &
sample="Tbar_t" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_t_JES_down.log &
sample="Tbar_t" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_t_JER_up.log &
wait
sample="Tbar_t" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_t_JER_down.log &
sample="Tbar_t" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_t_PU_down.log &
sample="Tbar_t" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_t_PU_up.log &
sample="Tbar_t" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_t_BJet_down.log &
sample="Tbar_t" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_t_BJet_up.log &
sample="Tbar_t" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_t_LightJet_down.log &
sample="Tbar_t" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_t_LightJet_up.log &
wait
sample="Tbar_s" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_s_central.log &
sample="Tbar_s" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_s_Electron_up.log &
sample="Tbar_s" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_s_Electron_down.log &
sample="Tbar_s" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_s_Muon_up.log &
sample="Tbar_s" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_s_Muon_down.log &
sample="Tbar_s" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_s_JES_up.log &
sample="Tbar_s" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_s_JES_down.log &
sample="Tbar_s" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_s_JER_up.log &
wait
sample="Tbar_s" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_s_JER_down.log &
sample="Tbar_s" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_s_PU_down.log &
sample="Tbar_s" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_s_PU_up.log &
sample="Tbar_s" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_s_BJet_down.log &
sample="Tbar_s" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_s_BJet_up.log &
sample="Tbar_s" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_s_LightJet_down.log &
sample="Tbar_s" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> Tbar_s_LightJet_up.log &
wait
sample="TTJet" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_central.log &
sample="TTJet" analysisMode="Electron_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_Electron_up.log &
sample="TTJet" analysisMode="Electron_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_Electron_down.log &
sample="TTJet" analysisMode="Muon_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_Muon_up.log &
sample="TTJet" analysisMode="Muon_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_Muon_down.log &
sample="TTJet" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_JES_up.log &
sample="TTJet" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_JES_down.log &
sample="TTJet" analysisMode="JetSmearing_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_JER_up.log &
wait
sample="TTJet" analysisMode="JetSmearing_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_JER_down.log &
sample="TTJet" analysisMode="PU_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_PU_down.log &
sample="TTJet" analysisMode="PU_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_PU_up.log &
sample="TTJet" analysisMode="BJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_BJet_down.log &
sample="TTJet" analysisMode="BJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_BJet_up.log &
sample="TTJet" analysisMode="LightJet_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_LightJet_down.log &
sample="TTJet" analysisMode="LightJet_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_LightJet_up.log &
wait
#data
sample="ElectronHad" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> ElectronHad_central.log &
sample="ElectronHad" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> ElectronHad_JES_up.log &
sample="ElectronHad" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> ElectronHad_JES_down.log &
sample="SingleMu" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> SingleMu_central.log &
sample="SingleMu" analysisMode="JES_up" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> SingleMu_JES_up.log &
sample="SingleMu" analysisMode="JES_down" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> SingleMu_JES_down.log &
wait
#systematics
sample="TTJets-matchingdown" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJets-matchingdown_central.log &
sample="TTJets-matchingup" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJets-matchingup_central.log &
sample="TTJets-scaledown" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJets-scaledown_central.log &
sample="TTJets-scaleup" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJets-scaleup_central.log &
sample="WJets-matchingdown" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WJets-matchingdown_central.log &
sample="WJets-matchingup" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WJets-matchingup_central.log &
sample="WJets-scaledown" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WJets-scaledown_central.log &
sample="WJets-scaleup" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> WJets-scaleup_central.log &
wait
sample="ZJets-matchingdown" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> ZJets-matchingdown_central.log &
sample="ZJets-matchingup" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> ZJets-matchingup_central.log &
sample="ZJets-scaledown" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> ZJets-scaledown_central.log &
sample="ZJets-scaleup" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> ZJets-scaleup_central.log &
#other generators: (last because they take the longest to run)
sample="TTJets-mcatnlo" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJets-mcatnlo_central.log &
#sample="TTJets-pythia" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJets-pythia_central.log &
sample="TTJets-powheg" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJets-powheg_central.log &
wait
#PDFs with odd numbers
for i in $(seq 11)
do
if [ $(($i % 2)) -eq 1 ]
then
testi="PDFWeights_${i}"
echo "Starting ${testi}"
sample=TTJet analysisMode=${testi} nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_${testi}.log &
fi
done
wait
for i in $(seq 12 22)
do
if [ $(($i % 2)) -eq 1 ]
then
testi="PDFWeights_${i}"
echo "Starting ${testi}"
sample=TTJet analysisMode=${testi} nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_${testi}.log &
fi
done
wait
for i in $(seq 22 33)
do
if [ $(($i % 2)) -eq 1 ]
then
testi="PDFWeights_${i}"
echo "Starting ${testi}"
sample=TTJet analysisMode=${testi} nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_${testi}.log &
fi
done
wait
for i in $(seq 34 44)
do
if [ $(($i % 2)) -eq 1 ]
then
testi="PDFWeights_${i}"
echo "Starting ${testi}"
sample=TTJet analysisMode=${testi} nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_${testi}.log &
fi
done
wait
#PDFs with even numbers
for i in $(seq 11)
do
if [ $(($i % 2)) -eq 0 ]
then
testi="PDFWeights_${i}"
echo "Starting ${testi}"
sample=TTJet analysisMode=${testi} nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_${testi}.log &
fi
done
wait
for i in $(seq 11 22)
do
if [ $(($i % 2)) -eq 0 ]
then
testi="PDFWeights_${i}"
echo "Starting ${testi}"
sample=TTJet analysisMode=${testi} nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_${testi}.log &
fi
done
wait
for i in $(seq 23 33)
do
if [ $(($i % 2)) -eq 0 ]
then
testi="PDFWeights_${i}"
echo "Starting ${testi}"
sample=TTJet analysisMode=${testi} nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_${testi}.log &
fi
done
wait
for i in $(seq 33 44)
do
if [ $(($i % 2)) -eq 0 ]
then
testi="PDFWeights_${i}"
echo "Starting ${testi}"
sample=TTJet analysisMode=${testi} nohup ${exe} ${toolsFolder}python/master_2011_44X_cfg.py ${TQAFPath} &> TTJet_${testi}.log &
fi
done
wait