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 - 15.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 ##
0009 ARG1=$1
0010 echo "Called with arg = "${ARG1}
0011 
0012 # run root in batch (-b), no banner (-l), quit after processing (-q)
0013 root -b -l -q 'makePlots.C( "'${ARG1}'" )'