1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
Commands to run the workflow multi-IOV:
## TO UPDATE
```
run_AlCaRecoTriggerBitsUpdateWorkflow.py -f frontier://PromptProd/CMS_CONDITIONS -i AlCaRecoHLTpaths8e29_1e31_v24_offline -d AlCaRecoHLTpaths_TEST
```
will create an update sqlite file called `AlCaRecoHLTpaths_TEST.db` with an updated tag ` AlCaRecoHLTpaths_TEST` (the same IOV structure will be preserved)
Options available:
* `-f` specifies connection (allows both condDB and sqlite files)
* `-i` specifies input tag
* `-d` specifies the output tag
* `[-C]` (optional) if set to false leaves transient files IOV-by-IOV
## TO READ BACK
```
cmsRun $CMSSW_BASE/src/CondTools/HLT/test/AlCaRecoTriggerBitsRcdRead_TEMPL_cfg.py inputDB=sqlite_file:AlCaRecoHLTpaths_TEST.db inputTag=AlCaRecoHLTpaths_TEST
```
|