1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
#!/bin/sh
if [ $# -ne 1 ]
then
echo Error: createRun2devPayloads.sh requires exactly one argument which is the tag
exit 1
fi
mytag=$1
echo ${mytag}
# Set the tag in all the scripts and the metadata text files
sed -i {s/TagXX/${mytag}/g} *.py
sed -i {s/TagXX/${mytag}/g} *.txt
sed -i {s/TagXX/${mytag}/g} splitRun2devDatabase.sh
# First read in the little XML files and create the
# large XML file for the Extended2015 scenario.
# Input cff Output file
# GeometryExtended2015dev_cff geSingleBigFile.xml
cmsRun geometryrun2devxmlwriter.py
# Now convert the content of the large XML file into
# a "blob" and write it to the database.
# Also reads in the little XML files again and fills
# the DDCompactView. From the DDCompactView the
# reco parts of the database are also filled.
cmsRun geometryrun2devwriter.py
# Now put the other scenarios into the database.
# Input the many XML files referenced by the cff file and
# output a single big XML file.
# This is repeated several times below. The sed commands
# serve to give the following sequence of input and output
# files
#
# Input cff Output file
# GeometryIdeal2015dev_cff giSingleBigFile.xml
#
sed -i '{s/Extended/Ideal/g}' geometryrun2devxmlwriter.py
sed -i '{s/\/ge/\/gi/g}' geometryrun2devxmlwriter.py
cmsRun geometryrun2devxmlwriter.py
sed -i '{s/Ideal/ExtendedCastorMeasured/g}' geometryrun2devxmlwriter.py
sed -i '{s/\/gi/\/gcm/g}' geometryrun2devxmlwriter.py
cmsRun geometryrun2devxmlwriter.py
sed -i '{s/ExtendedCastorMeasured/ExtendedCastorSystMinus/g}' geometryrun2devxmlwriter.py
sed -i '{s/\/gcm/\/gcsm/g}' geometryrun2devxmlwriter.py
cmsRun geometryrun2devxmlwriter.py
sed -i '{s/ExtendedCastorSystMinus/ExtendedCastorSystPlus/g}' geometryrun2devxmlwriter.py
sed -i '{s/\/gcsm/\/gcsp/g}' geometryrun2devxmlwriter.py
cmsRun geometryrun2devxmlwriter.py
# Read the one big XML file and output a record to the
# database with the an identifying tag
# This is repeated several times below. The sed commands
# serve to give the following sequence of input file and output
# tag
#
# Input file Output tag
# gegSingleBigFile.xml XMLFILE_Geometry_${mytag}_Extended2015GFlash_mc
# giSingleBigFile.xml XMLFILE_Geometry_${mytag}_Ideal2015_mc
#
sed -i '{s/Extended/Ideal/g}' xmlgeometryrun2devwriter.py
sed -i '{s/\/ge/\/gi/g}' xmlgeometryrun2devwriter.py
cmsRun xmlgeometryrun2devwriter.py
sed -i '{s/Ideal/ExtendedCastorMeasured/g}' xmlgeometryrun2devwriter.py
sed -i '{s/\/gi/\/gcm/g}' xmlgeometryrun2devwriter.py
cmsRun xmlgeometryrun2devwriter.py
sed -i '{s/ExtendedCastorMeasured/ExtendedCastorSystMinus/g}' xmlgeometryrun2devwriter.py
sed -i '{s/\/gcm/\/gcsm/g}' xmlgeometryrun2devwriter.py
cmsRun xmlgeometryrun2devwriter.py
sed -i '{s/ExtendedCastorSystMinus/ExtendedCastorSystPlus/g}' xmlgeometryrun2devwriter.py
sed -i '{s/\/gcsm/\/gcsp/g}' xmlgeometryrun2devwriter.py
cmsRun xmlgeometryrun2devwriter.py
# All the database objects were written into one database
# (myfile.db) in the steps above. Extract the different
# pieces into separate database files. These are the payloads
# that get uploaded to the dropbox. There is one for each tag
./splitRun2devDatabase.sh
|