CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
configTemplates.py
Go to the documentation of this file.
1 from alternateValidationTemplates import *
2 from offlineValidationTemplates import *
3 from primaryVertexValidationTemplates import *
4 from geometryComparisonTemplates import *
5 from monteCarloValidationTemplates import *
6 from trackSplittingValidationTemplates import *
7 from zMuMuValidationTemplates import *
8 from TkAlExceptions import AllInOneError
9 
10 ######################################################################
11 ######################################################################
12 ### ###
13 ### General Templates ###
14 ### ###
15 ######################################################################
16 ######################################################################
17 
18 ######################################################################
19 ######################################################################
20 conditionsTemplate="""
21 process.conditionsIn.oO[rcdName]Oo. = CalibTracker.Configuration.Common.PoolDBESSource_cfi.poolDBESSource.clone(
22  connect = cms.string('.oO[connectString]Oo.'),
23  toGet = cms.VPSet(cms.PSet(record = cms.string('.oO[rcdName]Oo.'),
24  tag = cms.string('.oO[tagName]Oo.')
25  )
26  )
27  )
28 process.prefer_conditionsIn.oO[rcdName]Oo. = cms.ESPrefer("PoolDBESSource", "conditionsIn.oO[rcdName]Oo.")
29 """
30 
31 
32 ######################################################################
33 ######################################################################
34 #batch job execution
35 scriptTemplate="""
36 #!/bin/bash
37 #init
38 #ulimit -v 3072000
39 #export STAGE_SVCCLASS=cmscafuser
40 #save path to the LSF batch working directory (/pool/lsf)
41 
42 export LSFWORKDIR=`pwd -P`
43 echo LSF working directory is $LSFWORKDIR
44 source /afs/cern.ch/cms/caf/setup.sh
45 eos='/afs/cern.ch/project/eos/installation/cms/bin/eos.select'
46 cd .oO[CMSSW_BASE]Oo./src
47 export SCRAM_ARCH=.oO[SCRAM_ARCH]Oo.
48 eval `scramv1 ru -sh`
49 #rfmkdir -p .oO[datadir]Oo. &>! /dev/null
50 
51 #remove possible result file from previous runs
52 previous_results=$($eos ls /store/caf/user/$USER/.oO[eosdir]Oo.)
53 for file in ${previous_results}
54 do
55  if [ ${file} = /store/caf/user/$USER/.oO[eosdir]Oo./.oO[outputFile]Oo. ]
56  then
57  xrdcp -f root://eoscms//eos/cms${file} root://eoscms//eos/cms${file}.bak
58  fi
59 done
60 
61 if [[ $HOSTNAME = lxplus[0-9]*\.cern\.ch ]] # check for interactive mode
62 then
63  rfmkdir -p .oO[workdir]Oo.
64  rm -f .oO[workdir]Oo./*
65  cd .oO[workdir]Oo.
66 else
67  mkdir -p $LSFWORKDIR/TkAllInOneTool
68  cd $LSFWORKDIR/TkAllInOneTool
69 fi
70 
71 # rm -f .oO[workdir]Oo./*
72 # cd .oO[workdir]Oo.
73 
74 #run
75 pwd
76 df -h .
77 .oO[CommandLine]Oo.
78 echo "----"
79 echo "List of files in $(pwd):"
80 ls -ltr
81 echo "----"
82 echo ""
83 
84 
85 #retrieve
86 rfmkdir -p .oO[logdir]Oo. >&! /dev/null
87 gzip -f LOGFILE_*_.oO[name]Oo..log
88 find . -maxdepth 1 -name "LOGFILE*.oO[alignmentName]Oo.*" -print | xargs -I {} bash -c "rfcp {} .oO[logdir]Oo."
89 
90 #copy root files to eos
91 $eos mkdir -p /store/caf/user/$USER/.oO[eosdir]Oo.
92 if [ .oO[parallelJobs]Oo. -eq 1 ]
93 then
94  root_files=$(ls --color=never -d *.oO[alignmentName]Oo.*.root)
95 else
96  root_files=$(ls --color=never -d *.oO[alignmentName]Oo._.oO[nIndex]Oo.*.root)
97 fi
98 echo ${root_files}
99 
100 for file in ${root_files}
101 do
102  xrdcp -f ${file} root://eoscms//eos/cms/store/caf/user/$USER/.oO[eosdir]Oo.
103  echo ${file}
104 done
105 
106 #cleanup
107 if [[ $HOSTNAME = lxplus[0-9]*\.cern\.ch ]] # check for interactive mode
108 then
109  rm -rf .oO[workdir]Oo.
110 fi
111 echo "done."
112 """
113 
114 
115 ######################################################################
116 ######################################################################
117 mergeTemplate="""
118 #!/bin/bash
119 eos='/afs/cern.ch/project/eos/installation/cms/bin/eos.select'
120 CWD=`pwd -P`
121 cd .oO[CMSSW_BASE]Oo./src
122 export SCRAM_ARCH=.oO[SCRAM_ARCH]Oo.
123 eval `scramv1 ru -sh`
124 
125 #create results-directory and copy used configuration there
126 rfmkdir -p .oO[datadir]Oo.
127 rfcp .oO[logdir]Oo./usedConfiguration.ini .oO[datadir]Oo.
128 
129 if [[ $HOSTNAME = lxplus[0-9]*\.cern\.ch ]] # check for interactive mode
130 then
131  mkdir -p .oO[workdir]Oo.
132  cd .oO[workdir]Oo.
133 else
134  cd $CWD
135 fi
136 echo "Working directory: $(pwd -P)"
137 
138 ###############################################################################
139 # download root files from eos
140 root_files=$($eos ls /store/caf/user/$USER/.oO[eosdir]Oo. \
141  | grep ".root$" | grep -v "result.root$")
142 #for file in ${root_files}
143 #do
144 # xrdcp -f root://eoscms//eos/cms/store/caf/user/$USER/.oO[eosdir]Oo./${file} .
145 # echo ${file}
146 #done
147 
148 
149 #run
150 .oO[DownloadData]Oo.
151 .oO[CompareAlignments]Oo.
152 
153 .oO[RunExtendedOfflineValidation]Oo.
154 .oO[RunTrackSplitPlot]Oo.
155 .oO[MergeZmumuPlots]Oo.
156 .oO[RunPrimaryVertexPlot]Oo.
157 
158 # clean-up
159 # ls -l *.root
160 rm -f *.root
161 
162 #zip stdout and stderr from the farm jobs
163 cd .oO[logdir]Oo.
164 find . -name "*.stderr" -exec gzip -f {} \;
165 find . -name "*.stdout" -exec gzip -f {} \;
166 """
167 
168 
169 ######################################################################
170 ######################################################################
171 mergeParallelResults="""
172 
173 .oO[copyMergeScripts]Oo.
174 .oO[haddLoop]Oo.
175 
176 # create log file
177 ls -al .oO[mergeParallelFilePrefixes]Oo. > .oO[datadir]Oo./log_rootfilelist.txt
178 
179 # Remove parallel job files
180 .oO[rmUnmerged]Oo.
181 """
182 
183 
184 ######################################################################
185 ######################################################################
186 compareAlignmentsExecution="""
187 #merge for .oO[validationId]Oo. if it does not exist or is not up-to-date
188 echo -e "\n\nComparing validations"
189 $eos mkdir -p /store/caf/user/$USER/.oO[eosdir]Oo./
190 cp .oO[Alignment/OfflineValidation]Oo./scripts/compareFileAges.C .
191 root -x -q -b -l "compareFileAges.C(\\\"root://eoscms.cern.ch//eos/cms/store/caf/user/$USER/.oO[eosdir]Oo./.oO[validationId]Oo._result.root\\\", \\\".oO[compareStringsPlain]Oo.\\\")"
192 comparisonNeeded=${?}
193 
194 if [[ ${comparisonNeeded} -eq 1 ]]
195 then
196  cp .oO[Alignment/OfflineValidation]Oo./scripts/compareAlignments.cc .
197  root -x -q -b -l 'compareAlignments.cc++(\".oO[compareStrings]Oo.\", ".oO[legendheader]Oo.", ".oO[customtitle]Oo.", ".oO[customrighttitle]Oo.", .oO[bigtext]Oo.)'
198  mv result.root .oO[validationId]Oo._result.root
199  xrdcp -f .oO[validationId]Oo._result.root root://eoscms//eos/cms/store/caf/user/$USER/.oO[eosdir]Oo.
200 else
201  echo ".oO[validationId]Oo._result.root is up-to-date, no need to compare again."
202  xrdcp -f root://eoscms//eos/cms/store/caf/user/$USER/.oO[eosdir]Oo./.oO[validationId]Oo._result.root .
203 fi
204 """
205 
206 
207 ######################################################################
208 ######################################################################
209 extendedValidationExecution="""
210 #run extended offline validation scripts
211 echo -e "\n\nRunning extended offline validation"
212 
213 rfcp .oO[extendedValScriptPath]Oo. .
214 root -x -b -q -l TkAlExtendedOfflineValidation.C
215 
216 """
217 
218 
219 ######################################################################
220 ######################################################################
221 extendedValidationTemplate="""
222 #include "Alignment/OfflineValidation/macros/PlotAlignmentValidation.C"
223 #include "FWCore/FWLite/interface/FWLiteEnabler.h"
224 
225 void TkAlExtendedOfflineValidation()
226 {
227  TkAlStyle::legendheader = ".oO[legendheader]Oo.";
228  TkAlStyle::legendoptions = ".oO[legendoptions]Oo.";
229  TkAlStyle::set(.oO[publicationstatus]Oo., .oO[era]Oo., ".oO[customtitle]Oo.", ".oO[customrighttitle]Oo.");
230  gStyle->SetTitleH ( 0.07 );
231  gStyle->SetTitleW ( 1.00 );
232  gStyle->SetTitleFont ( 132 );
233  // load framework lite just to find the CMSSW libs...
234  gSystem->Load("libFWCoreFWLite");
235  FWLiteEnabler::enable();
236 
237  .oO[extendedInstantiation]Oo.
238  p.setOutputDir(".oO[datadir]Oo./ExtendedOfflineValidation_Images");
239  p.setTreeBaseDir(".oO[OfflineTreeBaseDir]Oo.");
240  p.plotDMR(".oO[DMRMethod]Oo.",.oO[DMRMinimum]Oo.,".oO[DMROptions]Oo.");
241  p.plotSurfaceShapes(".oO[SurfaceShapes]Oo.");
242  p.plotChi2("root://eoscms//eos/cms/store/caf/user/$USER/.oO[eosdir]Oo./.oO[resultPlotFile]Oo._result.root");
243 }
244 """
245 
246 
247 ######################################################################
248 ######################################################################
249 crabCfgTemplate="""
250 [CRAB]
251 jobtype = cmssw
252 scheduler = caf
253 use_server = 0
254 
255 [CMSSW]
256 datasetpath = .oO[dataset]Oo.
257 pset = .oO[cfgFile]Oo.
258 total_number_of_.oO[McOrData]Oo.
259 number_of_jobs = .oO[numberOfJobs]Oo.
260 output_file = .oO[outputFile]Oo.
261 runselection = .oO[runRange]Oo.
262 lumi_mask = .oO[JSON]Oo.
263 
264 [USER]
265 return_data = 0
266 copy_data = 1
267 storage_element = T2_CH_CERN
268 user_remote_dir = .oO[eosdir]Oo.
269 ui_working_dir = .oO[crabWorkingDir]Oo.
270 # script_exe = .oO[script]Oo.
271 # .oO[email]Oo.
272 
273 [CAF]
274 queue = .oO[queue]Oo.
275 """
276 
277 
278 
279 
280 ######################################################################
281 ######################################################################
282 ### ###
283 ### Alternate Templates ###
284 ### ###
285 ######################################################################
286 ######################################################################
287 
288 
289 def alternateTemplate( templateName, alternateTemplateName ):
290 
291  if not templateName in globals().keys():
292  msg = "unknown template to replace %s"%templateName
293  raise AllInOneError(msg)
294  if not alternateTemplateName in globals().keys():
295  msg = "unknown template to replace %s"%alternateTemplateName
296  raise AllInOneError(msg)
297  globals()[ templateName ] = globals()[ alternateTemplateName ]
298  # = eval("configTemplates.%s"%"alternateTemplate")
def alternateTemplate
### Alternate Templates ###