CMS 3D CMS Logo

primaryVertexResolutionTemplates.py
Go to the documentation of this file.
1 PrimaryVertexResolutionTemplate="""
2 
3 HLTSel = .oO[doTriggerSelection]Oo.
4 
5 ###################################################################
6 # Runs and events
7 ###################################################################
8 runboundary = .oO[runboundary]Oo.
9 isMultipleRuns=False
10 if(isinstance(runboundary, (list, tuple))):
11  isMultipleRuns=True
12  print "Multiple Runs are selected"
13 
14 if(isMultipleRuns):
15  process.source.firstRun = cms.untracked.uint32(int(runboundary[0]))
16 else:
17  process.source.firstRun = cms.untracked.uint32(int(runboundary))
18 
19 
20 ###################################################################
21 # The trigger filter module
22 ###################################################################
23 from HLTrigger.HLTfilters.triggerResultsFilter_cfi import *
24 process.theHLTFilter = triggerResultsFilter.clone(
25  triggerConditions = cms.vstring(.oO[triggerBits]Oo.),
26  hltResults = cms.InputTag( "TriggerResults", "", "HLT" ),
27  l1tResults = cms.InputTag( "" ),
28  throw = cms.bool(False)
29 )
30 
31 ###################################################################
32 # PV refit
33 ###################################################################
34 process.load("TrackingTools.TransientTrack.TransientTrackBuilder_cfi")
35 
36 from RecoVertex.PrimaryVertexProducer.OfflinePrimaryVertices_cfi import offlinePrimaryVertices
37 process.offlinePrimaryVerticesFromRefittedTrks = offlinePrimaryVertices.clone()
38 process.offlinePrimaryVerticesFromRefittedTrks.TrackLabel = cms.InputTag("TrackRefitter")
39 process.offlinePrimaryVerticesFromRefittedTrks.vertexCollections.maxDistanceToBeam = 1
40 process.offlinePrimaryVerticesFromRefittedTrks.TkFilterParameters.maxNormalizedChi2 = 20
41 process.offlinePrimaryVerticesFromRefittedTrks.TkFilterParameters.minSiliconLayersWithHits = 5
42 process.offlinePrimaryVerticesFromRefittedTrks.TkFilterParameters.maxD0Significance = 5.0
43 # as it was prior to https://github.com/cms-sw/cmssw/commit/c8462ae4313b6be3bbce36e45373aa6e87253c59
44 process.offlinePrimaryVerticesFromRefittedTrks.TkFilterParameters.maxD0Error = 1.0
45 process.offlinePrimaryVerticesFromRefittedTrks.TkFilterParameters.maxDzError = 1.0
46 process.offlinePrimaryVerticesFromRefittedTrks.TkFilterParameters.minPixelLayersWithHits = 2
47 
48 # Use compressions settings of TFile
49 # see https://root.cern.ch/root/html534/TFile.html#TFile:SetCompressionSettings
50 # settings = 100 * algorithm + level
51 # level is from 1 (small) to 9 (large compression)
52 # algo: 1 (ZLIB), 2 (LMZA)
53 # see more about compression & performance: https://root.cern.ch/root/html534/guides/users-guide/InputOutput.html#compression-and-performance
54 compressionSettings = 207
55 
56 ###################################################################
57 # The PV resolution module
58 ###################################################################
59 process.PrimaryVertexResolution = cms.EDAnalyzer('SplitVertexResolution',
60  compressionSettings = cms.untracked.int32(compressionSettings),
61  storeNtuple = cms.bool(False),
62  vtxCollection = cms.InputTag("offlinePrimaryVerticesFromRefittedTrks"),
63  trackCollection = cms.InputTag("TrackRefitter"),
64  minVertexNdf = cms.untracked.double(10.),
65  minVertexMeanWeight = cms.untracked.double(0.5),
66  runControl = cms.untracked.bool(.oO[runControl]Oo.),
67  runControlNumber = cms.untracked.vuint32(runboundary)
68  )
69 
70 """
71 
72 
74 PVResolutionPath="""
75 
76 process.theValidSequence = cms.Sequence(process.offlineBeamSpot +
77  process.TrackRefitter +
78  process.offlinePrimaryVerticesFromRefittedTrks +
79  process.PrimaryVertexResolution)
80 if (HLTSel):
81  process.p = cms.Path(process.theHLTFilter + process.theValidSequence)
82 else:
83  process.p = cms.Path(process.theValidSequence)
84 """
85 
86 
88 PVResolutionScriptTemplate="""#!/bin/bash
89 source /afs/cern.ch/cms/caf/setup.sh
90 export X509_USER_PROXY=.oO[scriptsdir]Oo./.user_proxy
91 
92 source /afs/cern.ch/cms/caf/setup.sh
93 
94 echo -----------------------
95 echo Job started at `date`
96 echo -----------------------
97 
98 export theLabel=.oO[alignmentName]Oo.
99 export theDate=.oO[runboundary]Oo.
100 
101 cwd=`pwd`
102 cd .oO[CMSSW_BASE]Oo./src
103 export SCRAM_ARCH=.oO[SCRAM_ARCH]Oo.
104 eval `scram runtime -sh`
105 cd $cwd
106 
107 mkdir -p .oO[datadir]Oo.
108 mkdir -p .oO[workingdir]Oo.
109 mkdir -p .oO[logdir]Oo.
110 rm -f .oO[logdir]Oo./*.stdout
111 rm -f .oO[logdir]Oo./*.stderr
112 
113 if [[ $HOSTNAME = lxplus[0-9]*[.a-z0-9]* ]] # check for interactive mode
114 then
115  mkdir -p .oO[workdir]Oo.
116  rm -f .oO[workdir]Oo./*
117  cd .oO[workdir]Oo.
118 else
119  mkdir -p $cwd/TkAllInOneTool
120  cd $cwd/TkAllInOneTool
121 fi
122 
123 .oO[CommandLine]Oo.
124 
125 ls -lh .
126 
127 eos mkdir -p /store/group/alca_trackeralign/AlignmentValidation/.oO[eosdir]Oo./plots/
128 
129 for RootOutputFile in $(ls *root )
130 do
131  xrdcp -f ${RootOutputFile} root://eoscms//eos/cms/store/group/alca_trackeralign/AlignmentValidation/.oO[eosdir]Oo./${RootOutputFile}
132  cp ${RootOutputFile} .oO[workingdir]Oo.
133 done
134 
135 cp .oO[Alignment/OfflineValidation]Oo./macros/FitPVResolution.C .
136 cp .oO[Alignment/OfflineValidation]Oo./macros/CMS_lumi.C .
137 cp .oO[Alignment/OfflineValidation]Oo./macros/CMS_lumi.h .
138 
139  if [[ .oO[pvresolutionreference]Oo. == *store* ]]; then xrdcp -f .oO[pvresolutionreference]Oo. PVValidation_reference.root; else ln -fs .oO[pvresolutionreference]Oo. ./PVResolution_reference.root; fi
140 
141 root -b -q "FitPVResolution.C(\\"${PWD}/${RootOutputFile}=${theLabel},${PWD}/PVValidation_reference.root=Design simulation\\",\\"$theDate\\")"
142 
143 mkdir -p .oO[plotsdir]Oo.
144 for PngOutputFile in $(ls *png ); do
145  xrdcp -f ${PngOutputFile} root://eoscms//eos/cms/store/group/alca_trackeralign/AlignmentValidation/.oO[eosdir]Oo./plots/${PngOutputFile}
146  cp ${PngOutputFile} .oO[plotsdir]Oo.
147 done
148 
149 for PdfOutputFile in $(ls *pdf ); do
150  xrdcp -f ${PdfOutputFile} root://eoscms//eos/cms/store/group/alca_trackeralign/AlignmentValidation/.oO[eosdir]Oo./plots/${PdfOutputFile}
151  cp ${PdfOutputFile} .oO[plotsdir]Oo.
152 done
153 
154 echo -----------------------
155 echo Job ended at `date`
156 echo -----------------------
157 
158 """
159 
160 
162 
163 PVResolutionPlotExecution="""
164 #make primary vertex validation plots
165 
166 cp .oO[plottingscriptpath]Oo. .
167 root -x -b -q .oO[plottingscriptname]Oo.++
168 
169 for PdfOutputFile in $(ls *pdf ); do
170  xrdcp -f ${PdfOutputFile} root://eoscms//eos/cms/store/group/alca_trackeralign/AlignmentValidation/.oO[eosdir]Oo./plots/${PdfOutputFile}
171  cp ${PdfOutputFile} .oO[datadir]Oo./.oO[PlotsDirName]Oo.
172 done
173 
174 for PngOutputFile in $(ls *png ); do
175  xrdcp -f ${PngOutputFile} root://eoscms//eos/cms/store/group/alca_trackeralign/AlignmentValidation/.oO[eosdir]Oo./plots/${PngOutputFile}
176  cp ${PngOutputFile} .oO[datadir]Oo./.oO[PlotsDirName]Oo.
177 done
178 
179 """
180 
181 
183 
184 PVResolutionPlotTemplate="""
185 /****************************************
186 This can be run directly in root, or you
187  can run ./TkAlMerge.sh in this directory
188 ****************************************/
189 
190 #include "Alignment/OfflineValidation/macros/FitPVResolution.C"
191 
192 void TkAlPrimaryVertexResolutionPlot()
193 {
194 
195  // initialize the plot y-axis ranges
196  .oO[PlottingInstantiation]Oo.
197  FitPVResolution("","");
198 
199 }
200 """
201 
202