Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-03-05 03:15:21

0001 #! /bin/bash
0002 #
0003 # generate HLT tables from master table in ConfDB
0004 #
0005 
0006 echo
0007 echo "Create online version of the combined Special subtable"
0008 echo
0009 MASTER="/dev/CMSSW_15_0_0/HLT"             # no version, take the latest one
0010 TARGET="/online/special/2025/v1.0/TABLE"   # where to store the online-compliant menu
0011 PREFIX="online_"
0012 TABLES="Special"
0013 
0014 source subtables.sh
0015 createSubtables "v3/run3" "$MASTER" "$TARGET" "$PREFIX" "$TABLES"
0016 
0017 echo
0018 echo "Create online versions of special subtables from combined Special table"
0019 echo
0020 
0021 MASTER="/online/special/2025/v1.0/Special" # no version, take the latest one
0022 TARGET="/online/special/2025/v1.0/TABLE"   # where to store the online-compliant menu
0023 PREFIX="online_"
0024 TABLES="Circulating Cosmics ECAL FirstCollisions LumiScan PPS Splashes TrackerVR"
0025 
0026 source subtables.sh
0027 createSubtables "v3/run3" "$MASTER" "$TARGET" "$PREFIX" "$TABLES"