1 | #!/bin/sh
|
---|
2 | #
|
---|
3 | # ========================================================================
|
---|
4 | #
|
---|
5 | # *
|
---|
6 | # * This file is part of MARS, the MAGIC Analysis and Reconstruction
|
---|
7 | # * Software. It is distributed to you in the hope that it can be a useful
|
---|
8 | # * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
|
---|
9 | # * It is distributed WITHOUT ANY WARRANTY.
|
---|
10 | # *
|
---|
11 | # * Permission to use, copy, modify and distribute this software and its
|
---|
12 | # * documentation for any purpose is hereby granted without fee,
|
---|
13 | # * provided that the above copyright notice appear in all copies and
|
---|
14 | # * that both that copyright notice and this permission notice appear
|
---|
15 | # * in supporting documentation. It is provided "as is" without express
|
---|
16 | # * or implied warranty.
|
---|
17 | # *
|
---|
18 | #
|
---|
19 | #
|
---|
20 | # Author(s): Daniela Dorner 08/2004 <mailto:dorner@astro.uni-wuerzburg.de>
|
---|
21 | #
|
---|
22 | # Copyright: MAGIC Software Development, 2000-2006
|
---|
23 | #
|
---|
24 | #
|
---|
25 | # ========================================================================
|
---|
26 | #
|
---|
27 | # This script is moving the rawfiles from the directory
|
---|
28 | # /magic/datacenter/fromtape/rawdata to the structure
|
---|
29 | # /magic/data/rawfiles/YYYY/MM/DD
|
---|
30 | #
|
---|
31 |
|
---|
32 | umask 0002
|
---|
33 |
|
---|
34 | # change permission for files
|
---|
35 | # perhaps needed as the tapes are read by the user tape
|
---|
36 | ssh tape@dc07 chmod -R g+w /magic/datacenter/fromtape/rawdata/*
|
---|
37 | # output for chmod with -v or -c (only changes)
|
---|
38 | # for files transferes via internet perhaps also needed for user lapalma
|
---|
39 |
|
---|
40 | # find rawfiles
|
---|
41 | rawfiles=`find /magic/datacenter/fromtape/rawdata/ -name '*.*'`
|
---|
42 | for rawfile in $rawfiles
|
---|
43 | do
|
---|
44 | # workaround for rawfiles with wrong timing
|
---|
45 | # newrawfile=`echo $rawfile | sed -e 's/center\/fromtape\/rawdata/\/rawfiles-wrong-timing/g' -e 's/_/\//1' -e 's/_/\//1'`
|
---|
46 | newrawfile=`echo $rawfile | sed -e 's/center\/fromtape\/rawdata/\/rawfiles/g' -e 's/_/\//1' -e 's/_/\//1'`
|
---|
47 | newdir=`dirname $newrawfile`
|
---|
48 | if [ ! -d $newdir ]
|
---|
49 | then
|
---|
50 | mkdir -pv $newdir
|
---|
51 | if [ ! -d $newdir ]
|
---|
52 | then
|
---|
53 | echo "could not make dir "$newdir
|
---|
54 | exit
|
---|
55 | fi
|
---|
56 | fi
|
---|
57 |
|
---|
58 | mv -v $rawfile $newrawfile
|
---|
59 | # if gzip -1c $rawfile > $newrawfile.gz
|
---|
60 | # then
|
---|
61 | # rm -v $newrawfile
|
---|
62 | # rm -v $rawfile
|
---|
63 | # fi
|
---|
64 | done
|
---|
65 |
|
---|