CMS 3D CMS Logo

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 loadGlobalTagTemplate="""
21 #Global tag
22 process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
23 from Configuration.AlCa.GlobalTag import GlobalTag
24 process.GlobalTag = GlobalTag(process.GlobalTag,".oO[GlobalTag]Oo.")
25 """
26 
27 
28 ######################################################################
29 ######################################################################
30 conditionsTemplate="""
31 process.conditionsIn.oO[rcdName]Oo. = CalibTracker.Configuration.Common.PoolDBESSource_cfi.poolDBESSource.clone(
32  connect = cms.string('.oO[connectString]Oo.'),
33  toGet = cms.VPSet(cms.PSet(record = cms.string('.oO[rcdName]Oo.'),
34  tag = cms.string('.oO[tagName]Oo.')
35  )
36  )
37  )
38 process.prefer_conditionsIn.oO[rcdName]Oo. = cms.ESPrefer("PoolDBESSource", "conditionsIn.oO[rcdName]Oo.")
39 """
40 
41 
42 ######################################################################
43 ######################################################################
44 #batch job execution
45 scriptTemplate="""
46 #!/bin/bash
47 #init
48 #ulimit -v 3072000
49 #export STAGE_SVCCLASS=cmscafuser
50 #save path to the LSF batch working directory (/pool/lsf)
51 
52 export LSFWORKDIR=`pwd -P`
53 echo LSF working directory is $LSFWORKDIR
54 source /afs/cern.ch/cms/caf/setup.sh
55 export X509_USER_PROXY=.oO[scriptsdir]Oo./.user_proxy
56 cd .oO[CMSSW_BASE]Oo./src
57 export SCRAM_ARCH=.oO[SCRAM_ARCH]Oo.
58 eval `scramv1 ru -sh`
59 #rfmkdir -p .oO[datadir]Oo. &>! /dev/null
60 
61 #remove possible result file from previous runs
62 previous_results=$(ls /eos/cms/store/caf/user/$USER/.oO[eosdir]Oo.)
63 for file in ${previous_results}
64 do
65  if [ ${file} = /eos/cms/store/caf/user/$USER/.oO[eosdir]Oo./.oO[outputFile]Oo. ]
66  then
67  xrdcp -f root://eoscms//eos/cms${file} root://eoscms//eos/cms${file}.bak
68  fi
69 done
70 
71 if [[ $HOSTNAME = lxplus[0-9]*[.a-z0-9]* ]] # check for interactive mode
72 then
73  rfmkdir -p .oO[workdir]Oo.
74  rm -f .oO[workdir]Oo./*
75  cd .oO[workdir]Oo.
76 else
77  mkdir -p $LSFWORKDIR/TkAllInOneTool
78  cd $LSFWORKDIR/TkAllInOneTool
79 fi
80 
81 # rm -f .oO[workdir]Oo./*
82 # cd .oO[workdir]Oo.
83 
84 #run
85 pwd
86 df -h .
87 .oO[CommandLine]Oo.
88 echo "----"
89 echo "List of files in $(pwd):"
90 ls -ltr
91 echo "----"
92 echo ""
93 
94 
95 #retrieve
96 rfmkdir -p .oO[logdir]Oo. >&! /dev/null
97 gzip -f LOGFILE_*_.oO[name]Oo..log
98 find . -maxdepth 1 -name "LOGFILE*.oO[alignmentName]Oo.*" -print | xargs -I {} bash -c "rfcp {} .oO[logdir]Oo."
99 
100 #copy root files to eos
101 mkdir -p /eos/cms/store/caf/user/$USER/.oO[eosdir]Oo.
102 if [ .oO[parallelJobs]Oo. -eq 1 ]
103 then
104  root_files=$(ls --color=never -d *.oO[alignmentName]Oo.*.root)
105 else
106  root_files=$(ls --color=never -d *.oO[alignmentName]Oo._.oO[nIndex]Oo.*.root)
107 fi
108 echo ${root_files}
109 
110 for file in ${root_files}
111 do
112  xrdcp -f ${file} root://eoscms//eos/cms/store/caf/user/$USER/.oO[eosdir]Oo.
113  echo ${file}
114 done
115 
116 #cleanup
117 if [[ $HOSTNAME = lxplus[0-9]*[.a-z0-9]* ]] # check for interactive mode
118 then
119  rm -rf .oO[workdir]Oo.
120 fi
121 echo "done."
122 """
123 
124 
125 ######################################################################
126 ######################################################################
127 cfgTemplate="""
128 import FWCore.ParameterSet.Config as cms
129 
130 process = cms.Process(".oO[ProcessName]Oo.")
131 
132 .oO[datasetDefinition]Oo.
133 .oO[Bookkeeping]Oo.
134 .oO[LoadBasicModules]Oo.
135 .oO[TrackSelectionRefitting]Oo.
136 .oO[LoadGlobalTagTemplate]Oo.
137 .oO[condLoad]Oo.
138 .oO[ValidationConfig]Oo.
139 .oO[FileOutputTemplate]Oo.
140 
141 .oO[DefinePath]Oo.
142 """
143 
144 
145 ######################################################################
146 ######################################################################
147 Bookkeeping = """
148 process.options = cms.untracked.PSet(
149  wantSummary = cms.untracked.bool(False),
150  Rethrow = cms.untracked.vstring("ProductNotFound"), # make this exception fatal
151  fileMode = cms.untracked.string('NOMERGE') # no ordering needed, but calls endRun/beginRun etc. at file boundaries
152 )
153 
154 process.load("FWCore.MessageLogger.MessageLogger_cfi")
155 process.MessageLogger.destinations = ['cout', 'cerr']
156 process.MessageLogger.cerr.FwkReport.reportEvery = 1000
157 process.MessageLogger.statistics.append('cout')
158 """
159 
160 
161 ######################################################################
162 ######################################################################
163 CommonTrackSelectionRefitting = """
164 import Alignment.CommonAlignment.tools.trackselectionRefitting as trackselRefit
165 process.seqTrackselRefit = trackselRefit.getSequence(process, '.oO[trackcollection]Oo.',
166  TTRHBuilder='.oO[ttrhbuilder]Oo.',
167  usePixelQualityFlag=.oO[usepixelqualityflag]Oo.,
168  openMassWindow=.oO[openmasswindow]Oo.,
169  cosmicsDecoMode=.oO[cosmicsdecomode]Oo.,
170  cosmicsZeroTesla=.oO[cosmics0T]Oo.,
171  momentumConstraint=.oO[momentumconstraint]Oo.,
172  cosmicTrackSplitting=.oO[istracksplitting]Oo.,
173  use_d0cut=.oO[use_d0cut]Oo.,
174  )
175 
176 .oO[trackhitfiltercommands]Oo.
177 """
178 
179 
180 ######################################################################
181 ######################################################################
182 SingleTrackRefitter = """
183 process.load("RecoTracker.TrackProducer.TrackRefitters_cff")
184 process.TrackRefitter.src = ".oO[TrackCollection]Oo."
185 process.TrackRefitter.TTRHBuilder = ".oO[ttrhbuilder]Oo."
186 process.TrackRefitter.NavigationSchool = ""
187 """
188 
189 
190 ######################################################################
191 ######################################################################
192 LoadBasicModules = """
193 process.load("RecoVertex.BeamSpotProducer.BeamSpot_cff")
194 process.load("Configuration.Geometry.GeometryDB_cff")
195 process.load('Configuration.StandardSequences.Services_cff')
196 process.load("Configuration.StandardSequences..oO[magneticField]Oo._cff")
197 """
198 
199 
200 ######################################################################
201 ######################################################################
202 FileOutputTemplate = """
203 process.TFileService = cms.Service("TFileService",
204  fileName = cms.string('.oO[outputFile]Oo.')
205 )
206 """
207 
208 
209 ######################################################################
210 ######################################################################
211 DefinePath_CommonSelectionRefitting = """
212 process.p = cms.Path(
213 process.seqTrackselRefit*.oO[ValidationSequence]Oo.)
214 """
215 
216 ######################################################################
217 ######################################################################
218 mergeTemplate="""
219 #!/bin/bash
220 CWD=`pwd -P`
221 cd .oO[CMSSW_BASE]Oo./src
222 export SCRAM_ARCH=.oO[SCRAM_ARCH]Oo.
223 eval `scramv1 ru -sh`
224 
225 
226 .oO[createResultsDirectory]Oo.
227 
228 if [[ $HOSTNAME = lxplus[0-9]*[.a-z0-9]* ]] # check for interactive mode
229 then
230  mkdir -p .oO[workdir]Oo.
231  cd .oO[workdir]Oo.
232 else
233  cd $CWD
234 fi
235 echo "Working directory: $(pwd -P)"
236 
237 ###############################################################################
238 # download root files from eos
239 root_files=$(ls /eos/cms/store/caf/user/$USER/.oO[eosdir]Oo. \
240  | grep ".root$" | grep -v "result.root$")
241 #for file in ${root_files}
242 #do
243 # xrdcp -f root://eoscms//eos/cms/store/caf/user/$USER/.oO[eosdir]Oo./${file} .
244 # echo ${file}
245 #done
246 
247 
248 #run
249 .oO[DownloadData]Oo.
250 .oO[CompareAlignments]Oo.
251 
252 .oO[RunValidationPlots]Oo.
253 
254 # clean-up
255 # ls -l *.root
256 rm -f *.root
257 
258 #zip stdout and stderr from the farm jobs
259 cd .oO[logdir]Oo.
260 find . -name "*.stderr" -exec gzip -f {} \;
261 find . -name "*.stdout" -exec gzip -f {} \;
262 """
263 
264 
265 
266 ######################################################################
267 ######################################################################
268 mergeParallelOfflineTemplate="""
269 #!/bin/bash
270 CWD=`pwd -P`
271 cd .oO[CMSSW_BASE]Oo./src
272 export SCRAM_ARCH=.oO[SCRAM_ARCH]Oo.
273 eval `scramv1 ru -sh`
274 
275 if [[ $HOSTNAME = lxplus[0-9]*[.a-z0-9]* ]] # check for interactive mode
276 then
277  mkdir -p .oO[workdir]Oo.
278  cd .oO[workdir]Oo.
279 else
280  cd $CWD
281 fi
282 echo "Working directory: $(pwd -P)"
283 
284 ###############################################################################
285 # download root files from eos
286 root_files=$(ls /eos/cms/store/caf/user/$USER/.oO[eosdir]Oo. \
287  | grep ".root$" | grep -v "result.root$")
288 #for file in ${root_files}
289 #do
290 # xrdcp -f root://eoscms//eos/cms/store/caf/user/$USER/.oO[eosdir]Oo./${file} .
291 # echo ${file}
292 #done
293 
294 
295 #run
296 .oO[DownloadData]Oo.
297 """
298 
299 ######################################################################
300 ######################################################################
301 createResultsDirectoryTemplate="""
302 #create results-directory and copy used configuration there
303 rfmkdir -p .oO[datadir]Oo.
304 rfcp .oO[logdir]Oo./usedConfiguration.ini .oO[datadir]Oo.
305 """
306 
307 
308 ######################################################################
309 ######################################################################
310 mergeParallelResults="""
311 
312 .oO[beforeMerge]Oo.
313 .oO[doMerge]Oo.
314 
315 # create log file
316 ls -al .oO[mergeParallelFilePrefixes]Oo. > .oO[datadir]Oo./log_rootfilelist.txt
317 
318 # Remove parallel job files
319 .oO[rmUnmerged]Oo.
320 """
321 
322 
323 ######################################################################
324 ######################################################################
325 compareAlignmentsExecution="""
326 #merge for .oO[validationId]Oo. if it does not exist or is not up-to-date
327 echo -e "\n\nComparing validations"
328 mkdir -p /eos/cms/store/caf/user/$USER/.oO[eosdir]Oo./
329 cp .oO[Alignment/OfflineValidation]Oo./scripts/compareFileAges.C .
330 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.\\\")"
331 comparisonNeeded=${?}
332 
333 if [[ ${comparisonNeeded} -eq 1 ]]
334 then
335  cp .oO[compareAlignmentsPath]Oo. .
336  root -x -q -b -l '.oO[compareAlignmentsName]Oo.++(\".oO[compareStrings]Oo.\", ".oO[legendheader]Oo.", ".oO[customtitle]Oo.", ".oO[customrighttitle]Oo.", .oO[bigtext]Oo.)'
337  mv result.root .oO[validationId]Oo._result.root
338  xrdcp -f .oO[validationId]Oo._result.root root://eoscms//eos/cms/store/caf/user/$USER/.oO[eosdir]Oo.
339 else
340  echo ".oO[validationId]Oo._result.root is up-to-date, no need to compare again."
341  xrdcp -f root://eoscms//eos/cms/store/caf/user/$USER/.oO[eosdir]Oo./.oO[validationId]Oo._result.root .
342 fi
343 """
344 
345 
346 ######################################################################
347 ######################################################################
348 crabCfgTemplate="""
349 [CRAB]
350 jobtype = cmssw
351 scheduler = caf
352 use_server = 0
353 
354 [CMSSW]
355 datasetpath = .oO[dataset]Oo.
356 pset = .oO[cfgFile]Oo.
357 total_number_of_.oO[McOrData]Oo.
358 number_of_jobs = .oO[numberOfJobs]Oo.
359 output_file = .oO[outputFile]Oo.
360 runselection = .oO[runRange]Oo.
361 lumi_mask = .oO[JSON]Oo.
362 
363 [USER]
364 return_data = 0
365 copy_data = 1
366 storage_element = T2_CH_CERN
367 user_remote_dir = .oO[eosdir]Oo.
368 ui_working_dir = .oO[crabWorkingDir]Oo.
369 # script_exe = .oO[script]Oo.
370 # .oO[email]Oo.
371 
372 [CAF]
373 queue = .oO[queue]Oo.
374 """
375 
376 
377 
378 
379 ######################################################################
380 ######################################################################
381 ### ###
382 ### Alternate Templates ###
383 ### ###
384 ######################################################################
385 ######################################################################
386 
387 
388 def alternateTemplate( templateName, alternateTemplateName ):
389 
390  if not templateName in globals().keys():
391  msg = "unknown template to replace %s"%templateName
392  raise AllInOneError(msg)
393  if not alternateTemplateName in globals().keys():
394  msg = "unknown template to replace %s"%alternateTemplateName
395  raise AllInOneError(msg)
396  globals()[ templateName ] = globals()[ alternateTemplateName ]
397  # = eval("configTemplates.%s"%"alternateTemplate")
def alternateTemplate(templateName, alternateTemplateName)
Alternate Templates ###