]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EPOS/epos167/epos_all
Merging of the three alignment macros into one
[u/mrichter/AliRoot.git] / EPOS / epos167 / epos_all
CommitLineData
9ef1c2d9 1#!/bin/csh
2
3rm -fr comp_tmp
4rm -f epos_all.f
5
6set files=*.f
7foreach a ($files)
8
9echo $a '>> epos_all.f'
10
11cat $a >> epos_all.f
12
13end
14
15mkdir comp_tmp
16cp *.inc* comp_tmp/
17cp epos_all.f comp_tmp/
18
19cd comp_tmp
20
21ftnchekl -notruncation -pretty=no-continuation -no-pure epos_all.f | less
22#g77 -pg -Wall -fno-automatic -finit-local-zeros -fbounds-check -g epos_all.f
23cd ..
24