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
Copy file name to clipboardExpand all lines: doc/DevelopersTips.md
+39Lines changed: 39 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -394,3 +394,42 @@ query to see for a given run the number of objects per detector:
394
394
```
395
395
select ccdb.metadata -> '1337188343' as detector, count(distinct path), SUM(COUNT(distinct path)) from ccdb, ccdb_paths where ccdb_paths.pathid = ccdb.pathid AND ccdb.metadata -> '1048595860' = '529439' group by detector;
396
396
```
397
+
398
+
### Merge and upload QC results for all subjobs of a grid job
399
+
400
+
Please keep in mind that the file pattern in Grid could have changed since this was written.
401
+
```
402
+
#!/usr/bin/env bash
403
+
set -e
404
+
set -x
405
+
set -u
406
+
407
+
# we get the list of all QC.root files for o2_ctf and o2_rawtf directories
0 commit comments