Skip to content
Snippets Groups Projects
Commit b12fdec3 authored by Stewart Martin-Haugh's avatar Stewart Martin-Haugh
Browse files

Merge branch 'delete_indet_references' into '21.0'

Remove obsolete TrigInDetValidationReference package (ATR-13305)

See merge request !868
parents 9f6530b0 9cce3895
No related merge requests found
Showing
with 0 additions and 76 deletions
################################################################################
# Package: TrigInDetValidationReference
################################################################################
# Declare the package name:
atlas_subdir( TrigInDetValidationReference )
# Declare the package's dependencies:
atlas_depends_on_subdirs( PRIVATE
TestPolicy )
# Install files from the package:
atlas_install_runtime( share/data-*.root share/expert/expert*.root )
package TrigInDetValidationReference
private
use TestPolicy TestPolicy-*
apply_pattern validate_xml
public
use AtlasPolicy AtlasPolicy-*
use AtlasTriggerRunTime AtlasTriggerRunTime-*
apply_pattern declare_runtime extras="../share/data-*.root ../share/expert/expert*.root"
File deleted
#!/bin/csh
set PROJECT=devval
set RELEASE=rel_0
set DIR=$PWD
set BASE=/afs/cern.ch/atlas/project/RTT/prod/Results/rtt/$RELEASE/$PROJECT/build/x86_64-slc6-gcc48-opt/offline/TrigInDetValidation
echo "updating expert files ..."
set files = ($BASE/*/expert*.root)
foreach job ( $BASE/* )
echo ""
echo "job: $job"
cd $job
ls -l data*.root expert*.root
set testfile = `\ls -1 data*.root | grep -v reference`
set expertfile = `\ls -1 expert*.root | grep -v ref.root`
cd $DIR
set jobid = `echo ${job:t} | sed 's|TrigInDetValidation_||g'`
echo "jobid: $jobid"
echo "testfile: $testfile"
echo "expertfile: $expertfile"
if ( "$testfile" != "" ) then
cp -v $job/$testfile /tmp/data-$jobid-reference.root
TIDAmakeSmallRefFile.exe /tmp/data-$jobid-reference.root share/data-$jobid-reference.root >& $jobid.log
rm /tmp/data-$jobid-reference.root
endif
if ( "$expertfile" != "" ) then
cp -v $job/$expertfile share/expert/expert-monitoring-$jobid-ref.root
endif
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment