Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:40:48

0001 #!/bin/bash
0002 
0003 if [ "$#" == 0 ] || [ $1 == "-h" ] || [ $1 == "--help" ]
0004 then
0005   printf "\nUsage: "
0006   printf "runListID.sh [InputFileName] \n\n"
0007   exit 1;
0008 fi
0009 
0010 INPUTFILE=$1
0011 CWD=`pwd`
0012 FILE=\"$CWD/$INPUTFILE\"
0013 
0014 if [ "$#" == 1 ]
0015 then
0016 root -l -b -q "$CMSSW_BASE/src/Alignment/TrackerAlignment/macros/CosmicRateTool_MakeIdList.C(${FILE})"
0017 fi