Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-12-17 02:41:00

0001 #!/bin/bash
0002 # Save current working dir so img can be outputted there later
0003 W_DIR=$(pwd);
0004 # Set SCRAM architecture var
0005 SCRAM_ARCH=slc7_amd64_gcc900;
0006 export SCRAM_ARCH;
0007 source /afs/cern.ch/cms/cmsset_default.sh;
0008 eval `scram run -sh`;
0009 
0010 mkdir -p $W_DIR/plots
0011 
0012 getPayloadData.py \
0013     --plugin pluginDeDxCalibration_PayloadInspector \
0014     --plot plot_DeDxCalibrationTest \
0015     --tag DeDxCalibration_HI_2024_v1 \
0016     --time_type Run \
0017     --iovs '{"start_iov": "1", "end_iov": "1"}' \
0018     --db Prod \
0019     --test
0020 
0021 getPayloadData.py \
0022     --plugin pluginDeDxCalibration_PayloadInspector \
0023     --plot plot_DeDxCalibrationInspector \
0024     --tag DeDxCalibration_HI_2024_v2 \
0025     --time_type Run \
0026     --iovs '{"start_iov": "1", "end_iov": "1"}' \
0027     --db Prod \
0028     --test
0029 
0030 mv *.png $W_DIR/plots/Inspector.png
0031 
0032 getPayloadData.py \
0033     --plugin pluginDeDxCalibration_PayloadInspector \
0034     --plot plot_DeDxCalibrationPlot \
0035     --tag DeDxCalibration_HI_2024_v2 \
0036     --time_type Run \
0037     --iovs '{"start_iov": "1", "end_iov": "1"}' \
0038     --db Prod \
0039     --test
0040 
0041 mv *.png $W_DIR/plots/Plot.png