1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/bash
#
# generate HLT tables from master table in ConfDB
#
MASTER="/dev/CMSSW_15_0_0/HLT" # no version, take the latest one
TARGET="/online/collisions/2025/2e34/v1.0/HLT" # where to store the online-compliant menu
PREFIX=""
TABLES="online_grun"
source subtables.sh
createSubtables "v3/run3" "$MASTER" "$TARGET" "$PREFIX" "$TABLES"
|