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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#!/bin/bash
# Save current working dir so img can be outputted there later
W_DIR=$(pwd);
source /afs/cern.ch/cms/cmsset_default.sh;
eval `scram run -sh`;
# Go back to original working directory
cd $W_DIR;
# Run get payload data script
if [ -d $W_DIR/plots ]; then
rm -fr $W_DIR/plots
fi
mkdir $W_DIR/plots
getPayloadData.py \
--plugin pluginHcalRespCorrs_PayloadInspector \
--plot plot_HcalRespCorrsRatioAll \
--tag HcalRespCorrs_2024_v1.0_data \
--tagtwo HcalRespCorrs_2024_v2.0_data \
--time_type Run \
--iovs '{"start_iov": "1", "end_iov": "1"}' \
--iovstwo '{"start_iov": "1", "end_iov": "1"}' \
--db Prod \
--test;
mv *.png $W_DIR/plots/HcalRespCorrsRatio2D.png
getPayloadData.py \
--plugin pluginHcalRespCorrs_PayloadInspector \
--plot plot_HcalRespCorrsComparatorTwoTags \
--tag HcalRespCorrs_2024_v1.0_data \
--tagtwo HcalRespCorrs_2024_v2.0_data \
--time_type Run \
--iovs '{"start_iov": "1", "end_iov": "1"}' \
--iovstwo '{"start_iov": "1", "end_iov": "1"}' \
--db Prod \
--test;
mv *.png $W_DIR/plots/HcalRespCorrsCompareTwoTags.png
getPayloadData.py \
--plugin pluginHcalRespCorrs_PayloadInspector \
--plot plot_HcalRespCorrsCorrelationTwoTags \
--tag HcalRespCorrs_2024_v1.0_data \
--tagtwo HcalRespCorrs_2024_v2.0_data \
--time_type Run \
--iovs '{"start_iov": "1", "end_iov": "1"}' \
--iovstwo '{"start_iov": "1", "end_iov": "1"}' \
--db Prod \
--test;
mv *.png $W_DIR/plots/HcalRespCorrsCorrelateTwoTags.png
|