|
||||
File indexing completed on 2024-04-06 12:23:59
0001 #!/bin/bash 0002 0003 ## Quickly check if all python files in PhysicsTools/PatAlgos are well formed 0004 0005 for py in $(find $CMSSW_BASE/src/PhysicsTools/PatAlgos -name '*.py' -type f); do 0006 pyn=$(echo $py | sed "s#$CMSSW_BASE/src/PhysicsTools/PatAlgos/##g") 0007 echo "Checking $pyn..." 0008 python $py && echo -ne "\e[F\e[M"; 0009 done
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |