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
|
#! /bin/bash
#
# generate HLT tables from master table in ConfDB
#
echo
echo "Create online version of the combined Special subtable"
echo
MASTER="/dev/CMSSW_15_0_0/HLT" # no version, take the latest one
TARGET="/online/special/2025/v0.3/TABLE" # where to store the online-compliant menu
PREFIX="online_"
TABLES="Special"
source subtables.sh
createSubtables "v3/run3" "$MASTER" "$TARGET" "$PREFIX" "$TABLES"
echo
echo "Create online versions of special subtables from combined Special table"
echo
MASTER="/online/special/2025/v0.3/Special" # no version, take the latest one
TARGET="/online/special/2025/v0.3/TABLE" # where to store the online-compliant menu
PREFIX="online_"
TABLES="Circulating Cosmics ECAL FirstCollisions LumiScan PPS Splashes TrackerVR"
source subtables.sh
createSubtables "v3/run3" "$MASTER" "$TARGET" "$PREFIX" "$TABLES"
|