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="/dev/CMSSW_15_0_0/TABLE" # directory where to store the sub-tables
PREFIX=""
TABLES="GRun HIon PIon PRef Special" # which sub-tables to create
source subtables.sh
createSubtables "v3/run3" "$MASTER" "$TARGET" "$PREFIX" "$TABLES"
|