1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
echo '#### Test Writing and Reading TrackSoA'
scriptdir=$CMSSW_BASE/src/DataFormats/TrackSoA/test/
echo '> Writing'
cmsRun ${scriptdir}/testWriteHostTrackSoA.py testTrackSoa.root
if [ $? -ne 0 ]; then
exit 1;
fi
echo '> Reading'
cmsRun ${scriptdir}/testReadHostTrackSoA.py testTrackSoa.root
if [ $? -ne 0 ]; then
exit 1;
fi
echo '>>>> Done! <<<<'
|