File indexing completed on 2025-08-05 08:15:16
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 cd $1
0014
0015 echo "start of time " > time.txt
0016 for infile in "$2*.out"; do
0017
0018 grep -o -h 'MvtxClusterizer_TOP: per event time (ms):[^"]*' $infile >> time.txt
0019 grep -o -h 'InttClusterizer_TOP: per event time (ms):[^"]*' $infile >> time.txt
0020 grep -o -h 'TpcClusterizer_TOP: per event time (ms):[^"]*' $infile >> time.txt
0021 grep -o -h 'MicromegasClusterizer_TOP: per event time (ms):[^"]*' $infile >> time.txt
0022 grep -o -h 'PHMicromegasTpcTrackMatching_TOP: per event time (ms):[^"]*' $infile >> time.txt
0023 grep -o -h 'TpcClusterCleaner_TOP: per event time (ms):[^"]*' $infile >> time.txt
0024 grep -o -h 'PHActsSiliconSeeding_TOP: per event time (ms):[^"]*' $infile >> time.txt
0025 grep -o -h 'PHActsSiliconSeeding Acts seed time[^"]*' $infile >> time.txt
0026 grep -o -h 'PHCASeeding_TOP: per event time (ms):[^"]*' $infile >> time.txt
0027 grep -o -h 'PrePropagatorPHTpcTrackSeedCircleFit_TOP: per event time (ms):[^"]*' $infile >> time.txt
0028 grep -o -h 'PHSimpleKFProp_TOP: per event time (ms):[^"]*' $infile >> time.txt
0029 grep -o -h 'PHTpcTrackSeedCircleFit_TOP: per event time (ms):[^"]*' $infile >> time.txt
0030 grep -o -h 'PHSiliconTpcTrackMatching_TOP: per event time (ms):[^"]*' $infile >> time.txt
0031 grep -o -h 'PHActsTrkFitter_TOP: per event time (ms):[^"]*' $infile >> time.txt
0032 grep -o -h 'PHSimpleVertexFinder_TOP: per event time (ms):[^"]*' $infile >> time.txt
0033 grep -o -h 'PHActsVertexPropagator_TOP: per event time (ms):[^"]*' $infile >> time.txt
0034 grep -o -h 'PHTpcClusterMover_TOP: per event time (ms):[^"]*' $infile >> time.txt
0035 grep -o -h 'PHTpcDeltaZCorrection_TOP: per event time (ms):[^"]*' $infile >> time.txt
0036 grep -o -h 'PHTpcResiduals_TOP: per event time (ms):[^"]*' $infile >> time.txt
0037 done