CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
trackSplittingValidationTemplates.py
Go to the documentation of this file.
1 ######################################################################
2 ######################################################################
3 TrackSplittingTemplate="""
4 import FWCore.ParameterSet.Config as cms
5 
6 process = cms.Process("splitter")
7 
8 # CMSSW.2.2.3
9 
10 # message logger
11 process.load("FWCore.MessageLogger.MessageLogger_cfi")
12 MessageLogger = cms.Service("MessageLogger",
13  destinations = cms.untracked.vstring('LOGFILE_TrackSplitting_.oO[name]Oo.',
14  'cout')
15 )
16 ## report only every 100th record
17 process.MessageLogger.cerr.FwkReport.reportEvery = 100
18 
19 process.load('Configuration.StandardSequences.Services_cff')
20 process.load("Configuration.Geometry.GeometryDB_cff")
21 
22 # including global tag
23 process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
24 # setting global tag
25 #process.GlobalTag.connect = "frontier://FrontierProd/CMS_COND_21X_GLOBALTAG"
26 # process.GlobalTag.connect="frontier://FrontierProd/CMS_COND_31X_GLOBALTAG"
27 process.GlobalTag.globaltag = ".oO[GlobalTag]Oo."
28 
29 
30 ###########################################
31 ##necessary fix for the moment to avoid
32 ##Assymmetric forward layers in TrackerException going through path p
33 ##---- ScheduleExecutionFailure END
34 ##an exception occurred during current event processing
35 ##cms::Exception caught in EventProcessor and rethrown
36 ##---- EventProcessorFailure END
37 ############################################
38 #import CalibTracker.Configuration.Common.PoolDBESSource_cfi
39 from CondCore.DBCommon.CondDBSetup_cfi import *
40 #load the Global Position Rcd
41 process.globalPosition = cms.ESSource("PoolDBESSource", CondDBSetup,
42  toGet = cms.VPSet(cms.PSet(
43  record =cms.string('GlobalPositionRcd'),
44  tag= cms.string('IdealGeometry')
45  )),
46  connect = cms.string('frontier://FrontierProd/CMS_COND_31X_FROM21X')
47  )
48 process.es_prefer_GPRcd = cms.ESPrefer("PoolDBESSource","globalPosition")
49 ##########################################
50 
51 
52 # track selectors and refitting
53 process.load("Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi")
54 process.load("RecoVertex.BeamSpotProducer.BeamSpot_cff")
55 process.load("RecoTracker.TrackProducer.TrackRefitters_cff")
56 
57 # including data...
58 .oO[datasetDefinition]Oo.
59 
60 ## for craft SP skim v5
61 #process.source.inputCommands = cms.untracked.vstring("keep *","drop *_*_*_FU","drop *_*_*_HLT","drop *_MEtoEDMConverter_*_*","drop *_lumiProducer_*_REPACKER")
62 #process.source.dropDescendantsOfDroppedBranches = cms.untracked.bool( False )
63 
64 
65 # magnetic field
66 process.load("Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff")
67 
68 # adding geometries
69 from CondCore.DBCommon.CondDBSetup_cfi import *
70 
71 # for craft
72 ## tracker alignment for craft...............................................................
73 .oO[condLoad]Oo.
74 
75 ## track hit filter.............................................................
76 
77 # refit tracks first
78 import RecoTracker.TrackProducer.TrackRefitters_cff
79 process.TrackRefitter1 = RecoTracker.TrackProducer.TrackRefitterP5_cfi.TrackRefitterP5.clone(
80  src = '.oO[TrackCollection]Oo.',
81  TrajectoryInEvent = True,
82  TTRHBuilder = "WithTrackAngle",
83  NavigationSchool = ""
84  )
85 
86 process.FittingSmootherRKP5.EstimateCut = -1
87 
88 # module configuration
89 # alignment track selector
90 process.AlignmentTrackSelector.src = "TrackRefitter1"
91 process.AlignmentTrackSelector.filter = True
92 process.AlignmentTrackSelector.applyBasicCuts = True
93 process.AlignmentTrackSelector.ptMin = 0.
94 process.AlignmentTrackSelector.pMin = 4.
95 process.AlignmentTrackSelector.ptMax = 9999.
96 process.AlignmentTrackSelector.pMax = 9999.
97 process.AlignmentTrackSelector.etaMin = -9999.
98 process.AlignmentTrackSelector.etaMax = 9999.
99 process.AlignmentTrackSelector.nHitMin = 10
100 process.AlignmentTrackSelector.nHitMin2D = 2
101 process.AlignmentTrackSelector.minHitsPerSubDet.inBPIX=4 ##skip tracks not passing the pixel
102 process.AlignmentTrackSelector.chi2nMax = 9999.
103 process.AlignmentTrackSelector.applyMultiplicityFilter = True
104 process.AlignmentTrackSelector.maxMultiplicity = 1
105 process.AlignmentTrackSelector.applyNHighestPt = False
106 process.AlignmentTrackSelector.nHighestPt = 1
107 process.AlignmentTrackSelector.seedOnlyFrom = 0
108 process.AlignmentTrackSelector.applyIsolationCut = False
109 process.AlignmentTrackSelector.minHitIsolation = 0.8
110 process.AlignmentTrackSelector.applyChargeCheck = False
111 process.AlignmentTrackSelector.minHitChargeStrip = 50.
112 process.AlignmentTrackSelector.minHitsPerSubDet.inBPIX = 2
113 #process.AlignmentTrackSelector.trackQualities = ["highPurity"]
114 #process.AlignmentTrackSelector.iterativeTrackingSteps = ["iter1","iter2"]
115 process.KFFittingSmootherWithOutliersRejectionAndRK.EstimateCut=30.0
116 process.KFFittingSmootherWithOutliersRejectionAndRK.MinNumberOfHits=4
117 #process.FittingSmootherRKP5.EstimateCut = 20.0
118 #process.FittingSmootherRKP5.MinNumberOfHits = 4
119 
120 # configuration of the track spitting module
121 # new cuts allow for cutting on the impact parameter of the original track
122 process.load("RecoTracker.FinalTrackSelectors.cosmicTrackSplitter_cfi")
123 process.cosmicTrackSplitter.tracks = 'AlignmentTrackSelector'
124 process.cosmicTrackSplitter.tjTkAssociationMapTag = 'TrackRefitter1'
125 #process.cosmicTrackSplitter.excludePixelHits = False
126 
127 #---------------------------------------------------------------------
128 # the output of the track hit filter are track candidates
129 # give them to the TrackProducer
130 process.load("RecoTracker.TrackProducer.CTFFinalFitWithMaterialP5_cff")
131 process.HitFilteredTracks = RecoTracker.TrackProducer.CTFFinalFitWithMaterialP5_cff.ctfWithMaterialTracksCosmics.clone(
132  src = 'cosmicTrackSplitter',
133  TrajectoryInEvent = True,
134  TTRHBuilder = "WithTrackAngle",
135  NavigationSchool = ""
136 )
137 # second refit
138 process.TrackRefitter2 = process.TrackRefitter1.clone(
139  src = 'HitFilteredTracks'
140  )
141 
142 ### Now adding the construction of global Muons
143 # what Chang did...
144 process.load("Configuration.StandardSequences.ReconstructionCosmics_cff")
145 
146 process.cosmicValidation = cms.EDAnalyzer("CosmicSplitterValidation",
147  ifSplitMuons = cms.bool(False),
148  ifTrackMCTruth = cms.bool(False),
149  checkIfGolden = cms.bool(False),
150  splitTracks = cms.InputTag("TrackRefitter2","","splitter"),
151  splitGlobalMuons = cms.InputTag("muons","","splitter"),
152  originalTracks = cms.InputTag("TrackRefitter1","","splitter"),
153  originalGlobalMuons = cms.InputTag("muons","","Rec")
154 )
155 
156 process.TFileService = cms.Service("TFileService",
157  fileName = cms.string('.oO[outputFile]Oo.')
158 )
159 
160 process.p = cms.Path(process.offlineBeamSpot*process.TrackRefitter1*process.AlignmentTrackSelector*process.cosmicTrackSplitter*process.HitFilteredTracks*process.TrackRefitter2*process.cosmicValidation)
161 """
162 
163 
164 ######################################################################
165 ######################################################################
166 
167 trackSplitPlotExecution="""
168 #make track splitting plots
169 if [[ $HOSTNAME = lxplus[0-9]*\.cern\.ch ]] # check for interactive mode
170 then
171  rfmkdir -p .oO[workdir]Oo./TrackSplittingPlots
172 else
173  mkdir -p TrackSplittingPlots
174 fi
175 
176 rfcp .oO[trackSplitPlotScriptPath]Oo. .
177 root -x -b -q TkAlTrackSplitPlot.C++
178 rfmkdir -p .oO[datadir]Oo./TrackSplittingPlots
179 
180 if [[ $HOSTNAME = lxplus[0-9]*\.cern\.ch ]] # check for interactive mode
181 then
182  image_files=$(find .oO[workdir]Oo./TrackSplittingPlots/* -maxdepth 0)
183  echo ${image_files}
184  ls .oO[workdir]Oo./TrackSplittingPlots
185 else
186  image_files=$(find TrackSplittingPlots/* -maxdepth 0)
187  echo ${image_files}
188  ls TrackSplittingPlots
189 fi
190 
191 for image in ${image_files}
192 do
193  cp -r ${image} .oO[datadir]Oo./TrackSplittingPlots
194 done
195 """
196 
197 ######################################################################
198 ######################################################################
199 
200 trackSplitPlotTemplate="""
201 #include ".oO[CMSSW_BASE]Oo./src/Alignment/OfflineValidation/macros/trackSplitPlot.C"
202 
203 /****************************************
204 This can be run directly in root, or you
205  can run ./TkAlMerge.sh in this directory
206 It can be run as is, or adjusted to fit
207  for misalignments or to only make
208  certain plots
209 ****************************************/
210 
211 /********************************
212 To make ALL plots (313 in total):
213  leave this file as is
214 ********************************/
215 
216 /**************************************************************************
217 to make all plots involving a single x or y variable, or both:
218 Uncomment the line marked (B), and fill in for xvar and yvar
219 
220 Examples:
221 
222  xvar = "nHits", yvar = "ptrel" - makes plots of nHits vs Delta_pt/pt_org
223  (4 total - profile and resolution,
224  of Delta_pt/pt_org and its pull
225  distribution)
226  xvar = "all", yvar = "pt" - makes all plots involving Delta_pt
227  (not Delta_pt/pt_org)
228  (38 plots total:
229  histogram and pull distribution, and
230  their mean and width as a function
231  of the 9 x variables)
232  xvar = "", yvar = "all" - makes all histograms of all y variables
233  (including Delta_pt/pt_org)
234  (16 plots total - 8 y variables,
235  regular and pull histograms)
236 **************************************************************************/
237 
238 /**************************************************************************************
239 To make a custom selection of plots:
240 Uncomment the lines marked (C) and this section, and fill in matrix however you want */
241 
242 /*
243 Bool_t plotmatrix[xsize][ysize];
244 void fillmatrix()
245 {
246  for (int x = 0; x < xsize; x++)
247  for (int y = 0; y < ysize; y++)
248  plotmatrix[x][y] = (.............................);
249 }
250 */
251 
252 /*
253 The variables are defined in Alignment/OfflineValidation/macros/trackSplitPlot.h
254  as follows:
255 TString xvariables[xsize] = {"pt", "eta", "phi", "dz", "dxy", "theta",
256  "qoverpt", "runNumber","nHits",""};
257 
258 TString yvariables[ysize] = {"pt", "pt", "eta", "phi", "dz", "dxy", "theta",
259  "qoverpt", ""};
260 Bool_t relativearray[ysize] = {true, false, false, false, false, false, false,
261  false, false};
262 Use matrix[x][y] = true to make that plot, and false not to make it.
263 **************************************************************************************/
264 
265 /*************************************************************************************
266 To fit for a misalignment, which can be combined with any other option:
267 Uncomment the line marked (A) and this section, and choose your misalignment */
268 
269 /*
270 TString misalignment = "choose one";
271 double *values = 0;
272 double *phases = 0;
273 //or:
274 // double values[number of files] = {...};
275 // double phases[number of files] = {...};
276 */
277 
278 /*
279 The options for misalignment are sagitta, elliptical, skew, telescope, or layerRot.
280 If the magnitude and phase of the misalignment are known (i.e. Monte Carlo data using
281  a geometry produced by the systematic misalignment tool), make values and phases into
282  arrays, with one entry for each file, to make a plot of the result of the fit vs. the
283  misalignment value.
284 phases must be filled in for sagitta, elliptical, and skew if values is;
285  for the others it has no effect
286 *************************************************************************************/
287 
288 void TkAlTrackSplitPlot()
289 {
290  //fillmatrix(); //(C)
291  makePlots(".oO[trackSplitPlotInstantiation]Oo.",
292  //misalignment,values,phases, //(A)
293  "TrackSplittingPlots"
294  //,"xvar","yvar" //(B)
295  //,plotmatrix //(C)
296  );
297 }
298 """
299