1 PrimaryVertexResolutionTemplate=
"""
3 HLTSel = .oO[doTriggerSelection]Oo.
5 ###################################################################
7 ###################################################################
8 runboundary = .oO[runboundary]Oo.
10 if(isinstance(runboundary, (list, tuple))):
12 print "Multiple Runs are selected"
15 process.source.firstRun = cms.untracked.uint32(int(runboundary[0]))
17 process.source.firstRun = cms.untracked.uint32(int(runboundary))
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)
31 ###################################################################
33 ###################################################################
34 process.load("TrackingTools.TransientTrack.TransientTrackBuilder_cfi")
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
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
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)
76 process.theValidSequence = cms.Sequence(process.offlineBeamSpot +
77 process.TrackRefitter +
78 process.offlinePrimaryVerticesFromRefittedTrks +
79 process.PrimaryVertexResolution)
81 process.p = cms.Path(process.theHLTFilter + process.theValidSequence)
83 process.p = cms.Path(process.theValidSequence)
88 PVResolutionScriptTemplate=
"""#!/bin/bash
89 source /afs/cern.ch/cms/caf/setup.sh
90 export X509_USER_PROXY=.oO[scriptsdir]Oo./.user_proxy
92 source /afs/cern.ch/cms/caf/setup.sh
94 echo -----------------------
95 echo Job started at `date`
96 echo -----------------------
98 export theLabel=.oO[alignmentName]Oo.
99 export theDate=.oO[runboundary]Oo.
102 cd .oO[CMSSW_BASE]Oo./src
103 export SCRAM_ARCH=.oO[SCRAM_ARCH]Oo.
104 eval `scram runtime -sh`
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
113 if [[ $HOSTNAME = lxplus[0-9]*[.a-z0-9]* ]] # check for interactive mode
115 mkdir -p .oO[workdir]Oo.
116 rm -f .oO[workdir]Oo./*
119 mkdir -p $cwd/TkAllInOneTool
120 cd $cwd/TkAllInOneTool
127 eos mkdir -p /store/group/alca_trackeralign/AlignmentValidation/.oO[eosdir]Oo./plots/
129 for RootOutputFile in $(ls *root )
131 xrdcp -f ${RootOutputFile} root://eoscms//eos/cms/store/group/alca_trackeralign/AlignmentValidation/.oO[eosdir]Oo./${RootOutputFile}
132 cp ${RootOutputFile} .oO[workingdir]Oo.
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 .
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
141 root -b -q "FitPVResolution.C(\\"${PWD}/${RootOutputFile}=${theLabel},${PWD}/PVValidation_reference.root=Design simulation\\",\\"$theDate\\")"
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.
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.
154 echo -----------------------
155 echo Job ended at `date`
156 echo -----------------------
163 PVResolutionPlotExecution=
"""
164 #make primary vertex validation plots
166 cp .oO[plottingscriptpath]Oo. .
167 root -x -b -q .oO[plottingscriptname]Oo.++
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.
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.
184 PVResolutionPlotTemplate=
"""
185 /****************************************
186 This can be run directly in root, or you
187 can run ./TkAlMerge.sh in this directory
188 ****************************************/
190 #include "Alignment/OfflineValidation/macros/FitPVResolution.C"
192 void TkAlPrimaryVertexResolutionPlot()
195 // initialize the plot y-axis ranges
196 .oO[PlottingInstantiation]Oo.
197 FitPVResolution("","");