Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:03

0001 #!/bin/bash 
0002 ##
0003 ## Call makePlots.C to make plots from root file output of  CSCValidation
0004 ## CSC DPG - Tim Cox - 12.07.2022
0005 ## Run it like
0006 ## ./makePlots.sh path_to_root_file
0007 ## The plots are png files and produced in the current directory
0008 ## Remains in root, so need '.q' to quit
0009 ##
0010 ARG1=$1
0011 echo "Called with arg = "${ARG1}
0012 root 'makePlots.C( "'${ARG1}'" )'
0013