Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:06:54

0001 #!/bin/bash
0002 
0003 for h in `cat CSCDQM_Local_HistoType.txt | sed "s/    /\t/g" | cut -s -f 1` ; do
0004   n=`cat ../src/CSCDQM_EventProcessor* | grep "[( ,]$h," | wc -l`
0005   if [ "$n" = 0 ]; then
0006     echo $h = $n
0007   fi
0008 done
0009 
0010 for h in `cat CSCDQM_Local_HistoType.txt | sed "s/    /\t/g" | cut -s -f 2` ; do
0011   n=`cat ../plotter/src/common/EmuPlotter_process* | grep "[( ,]$h," | wc -l`
0012   if [ "$n" = 0 ]; then
0013     echo $h = $n
0014   fi
0015 done