@@ -212,8 +212,8 @@ TrackerSectorStruct::CorrelationHists TrackerSectorStruct::bookCorrHists(TString
212212 const std::string &o (options);
213213 CorrelationHists correlationHists;
214214
215- if (!(o.find (" n " ) != std::string::npos || o.find (" p " ) != std::string::npos || o.find (" h " ) != std::string::npos ||
216- o.find (" t " ) != std::string::npos || o.find (" r " ) != std::string::npos))
215+ if (!(o.find (' n ' ) != std::string::npos || o.find (' p ' ) != std::string::npos || o.find (' h ' ) != std::string::npos ||
216+ o.find (' t ' ) != std::string::npos || o.find (' r ' ) != std::string::npos))
217217 return correlationHists;
218218
219219 TFileDirectory *directory (directory_);
@@ -228,7 +228,7 @@ TrackerSectorStruct::CorrelationHists TrackerSectorStruct::bookCorrHists(TString
228228 minBinX,
229229 maxBinX);
230230
231- if (options.find (" n " ) != std::string::npos)
231+ if (options.find (' n ' ) != std::string::npos)
232232 correlationHists.NorResXVsVar =
233233 directory->make <TH2F>(" h2_norRes" + xY + " Vs" + varName,
234234 " r_{" + xy + " }/#sigma_{r," + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX +
@@ -239,7 +239,7 @@ TrackerSectorStruct::CorrelationHists TrackerSectorStruct::bookCorrHists(TString
239239 25 ,
240240 -norResXMax,
241241 norResXMax);
242- if (options.find (" p " ) != std::string::npos)
242+ if (options.find (' p ' ) != std::string::npos)
243243 correlationHists.ProbXVsVar =
244244 directory->make <TH2F>(" h2_prob" + xY + " Vs" + varName,
245245 " prob_{" + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX + " ;prob_{" + xy + " }" ,
@@ -249,7 +249,7 @@ TrackerSectorStruct::CorrelationHists TrackerSectorStruct::bookCorrHists(TString
249249 60 ,
250250 -0.1 ,
251251 1.1 );
252- if (options.find (" h " ) != std::string::npos)
252+ if (options.find (' h ' ) != std::string::npos)
253253 correlationHists.SigmaXHitVsVar = directory->make <TH2F>(
254254 " h2_sigma" + xY + " HitVs" + varName,
255255 " #sigma_{hit," + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX + " ;#sigma_{hit," + xy + " } [#mum]" ,
@@ -259,7 +259,7 @@ TrackerSectorStruct::CorrelationHists TrackerSectorStruct::bookCorrHists(TString
259259 50 ,
260260 0 * 10000 .,
261261 sigmaXHitMax * 10000 .);
262- if (options.find (" t " ) != std::string::npos)
262+ if (options.find (' t ' ) != std::string::npos)
263263 correlationHists.SigmaXTrkVsVar = directory->make <TH2F>(
264264 " h2_sigma" + xY + " TrkVs" + varName,
265265 " #sigma_{trk," + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX + " ;#sigma_{trk," + xy + " } [#mum]" ,
@@ -269,7 +269,7 @@ TrackerSectorStruct::CorrelationHists TrackerSectorStruct::bookCorrHists(TString
269269 50 ,
270270 0 * 10000 .,
271271 sigmaXMax * 10000 .);
272- if (options.find (" r " ) != std::string::npos)
272+ if (options.find (' r ' ) != std::string::npos)
273273 correlationHists.SigmaXVsVar = directory->make <TH2F>(
274274 " h2_sigma" + xY + " Vs" + varName,
275275 " #sigma_{r," + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX + " ;#sigma_{r," + xy + " } [#mum]" ,
@@ -280,7 +280,7 @@ TrackerSectorStruct::CorrelationHists TrackerSectorStruct::bookCorrHists(TString
280280 0 * 10000 .,
281281 sigmaXMax * 10000 .);
282282
283- if (options.find (" n " ) != std::string::npos)
283+ if (options.find (' n ' ) != std::string::npos)
284284 correlationHists.PNorResXVsVar =
285285 directory->make <TProfile>(" p_norRes" + xY + " Vs" + varName,
286286 " r_{" + xy + " }/#sigma_{r," + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX +
@@ -289,29 +289,29 @@ TrackerSectorStruct::CorrelationHists TrackerSectorStruct::bookCorrHists(TString
289289 minBinX,
290290 maxBinX,
291291 " s" );
292- if (options.find (" p " ) != std::string::npos)
292+ if (options.find (' p ' ) != std::string::npos)
293293 correlationHists.PProbXVsVar = directory->make <TProfile>(
294294 " p_prob" + xY + " Vs" + varName,
295295 " prob_{" + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX + " ;prob_{" + xy + " }" ,
296296 nBinX2D,
297297 minBinX,
298298 maxBinX,
299299 " s" );
300- if (options.find (" h " ) != std::string::npos)
300+ if (options.find (' h ' ) != std::string::npos)
301301 correlationHists.PSigmaXHitVsVar = directory->make <TProfile>(
302302 " p_sigma" + xY + " HitVs" + varName,
303303 " #sigma_{hit," + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX + " ;#sigma_{hit," + xy + " } [#mum]" ,
304304 nBinX2D,
305305 minBinX,
306306 maxBinX);
307- if (options.find (" t " ) != std::string::npos)
307+ if (options.find (' t ' ) != std::string::npos)
308308 correlationHists.PSigmaXTrkVsVar = directory->make <TProfile>(
309309 " p_sigma" + xY + " TrkVs" + varName,
310310 " #sigma_{trk," + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX + " ;#sigma_{trk," + xy + " } [#mum]" ,
311311 nBinX2D,
312312 minBinX,
313313 maxBinX);
314- if (options.find (" r " ) != std::string::npos)
314+ if (options.find (' r ' ) != std::string::npos)
315315 correlationHists.PSigmaXVsVar = directory->make <TProfile>(
316316 " p_sigma" + xY + " Vs" + varName,
317317 " #sigma_{r," + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX + " ;#sigma_{r," + xy + " } [#mum]" ,
@@ -349,8 +349,8 @@ TrackerSectorStruct::CorrelationHists TrackerSectorStruct::bookCorrHists(TString
349349 const std::string &o (options);
350350 CorrelationHists correlationHists;
351351
352- if (!(o.find (" n " ) != std::string::npos || o.find (" p " ) != std::string::npos || o.find (" h " ) != std::string::npos ||
353- o.find (" t " ) != std::string::npos || o.find (" r " ) != std::string::npos))
352+ if (!(o.find (' n ' ) != std::string::npos || o.find (' p ' ) != std::string::npos || o.find (' h ' ) != std::string::npos ||
353+ o.find (' t ' ) != std::string::npos || o.find (' r ' ) != std::string::npos))
354354 return correlationHists;
355355
356356 TFileDirectory *directory (directory_);
@@ -359,7 +359,7 @@ TrackerSectorStruct::CorrelationHists TrackerSectorStruct::bookCorrHists(TString
359359 if (!directory)
360360 return correlationHists;
361361
362- if (options.find (" n " ) != std::string::npos)
362+ if (options.find (' n ' ) != std::string::npos)
363363 correlationHists.NorResXVsVar =
364364 directory->make <TH2F>(" h2_norRes" + xY + " Vs" + varName,
365365 " r_{" + xy + " }/#sigma_{r," + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX +
@@ -370,7 +370,7 @@ TrackerSectorStruct::CorrelationHists TrackerSectorStruct::bookCorrHists(TString
370370 25 ,
371371 -norResXMax,
372372 norResXMax);
373- if (options.find (" p " ) != std::string::npos)
373+ if (options.find (' p ' ) != std::string::npos)
374374 correlationHists.ProbXVsVar =
375375 directory->make <TH2F>(" h2_prob" + xY + " Vs" + varName,
376376 " prob_{" + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX + " ;prob_{" + xy + " }" ,
@@ -380,7 +380,7 @@ TrackerSectorStruct::CorrelationHists TrackerSectorStruct::bookCorrHists(TString
380380 60 ,
381381 -0.1 ,
382382 1.1 );
383- if (options.find (" h " ) != std::string::npos)
383+ if (options.find (' h ' ) != std::string::npos)
384384 correlationHists.SigmaXHitVsVar = directory->make <TH2F>(
385385 " h2_sigma" + xY + " HitVs" + varName,
386386 " #sigma_{hit," + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX + " ;#sigma_{hit," + xy + " } [#mum]" ,
@@ -390,7 +390,7 @@ TrackerSectorStruct::CorrelationHists TrackerSectorStruct::bookCorrHists(TString
390390 50 ,
391391 0 * 10000 .,
392392 sigmaXHitMax * 10000 .);
393- if (options.find (" t " ) != std::string::npos)
393+ if (options.find (' t ' ) != std::string::npos)
394394 correlationHists.SigmaXTrkVsVar = directory->make <TH2F>(
395395 " h2_sigma" + xY + " TrkVs" + varName,
396396 " #sigma_{trk," + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX + " ;#sigma_{trk," + xy + " } [#mum]" ,
@@ -400,7 +400,7 @@ TrackerSectorStruct::CorrelationHists TrackerSectorStruct::bookCorrHists(TString
400400 50 ,
401401 0 * 10000 .,
402402 sigmaXMax * 10000 .);
403- if (options.find (" r " ) != std::string::npos)
403+ if (options.find (' r ' ) != std::string::npos)
404404 correlationHists.SigmaXVsVar = directory->make <TH2F>(
405405 " h2_sigma" + xY + " Vs" + varName,
406406 " #sigma_{r," + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX + " ;#sigma_{r," + xy + " } [#mum]" ,
@@ -411,7 +411,7 @@ TrackerSectorStruct::CorrelationHists TrackerSectorStruct::bookCorrHists(TString
411411 0 * 10000 .,
412412 sigmaXMax * 10000 .);
413413
414- if (options.find (" n " ) != std::string::npos)
414+ if (options.find (' n ' ) != std::string::npos)
415415 correlationHists.PNorResXVsVar =
416416 directory->make <TProfile>(" p_norRes" + xY + " Vs" + varName,
417417 " r_{" + xy + " }/#sigma_{r," + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX +
@@ -420,29 +420,29 @@ TrackerSectorStruct::CorrelationHists TrackerSectorStruct::bookCorrHists(TString
420420 minBinX,
421421 maxBinX,
422422 " s" );
423- if (options.find (" p " ) != std::string::npos)
423+ if (options.find (' p ' ) != std::string::npos)
424424 correlationHists.PProbXVsVar = directory->make <TProfile>(
425425 " p_prob" + xY + " Vs" + varName,
426426 " prob_{" + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX + " ;prob_{" + xy + " }" ,
427427 nBinX,
428428 minBinX,
429429 maxBinX,
430430 " s" );
431- if (options.find (" h " ) != std::string::npos)
431+ if (options.find (' h ' ) != std::string::npos)
432432 correlationHists.PSigmaXHitVsVar = directory->make <TProfile>(
433433 " p_sigma" + xY + " HitVs" + varName,
434434 " #sigma_{hit," + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX + " ;#sigma_{hit," + xy + " } [#mum]" ,
435435 nBinX,
436436 minBinX,
437437 maxBinX);
438- if (options.find (" t " ) != std::string::npos)
438+ if (options.find (' t ' ) != std::string::npos)
439439 correlationHists.PSigmaXTrkVsVar = directory->make <TProfile>(
440440 " p_sigma" + xY + " TrkVs" + varName,
441441 " #sigma_{trk," + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX + " ;#sigma_{trk," + xy + " } [#mum]" ,
442442 nBinX,
443443 minBinX,
444444 maxBinX);
445- if (options.find (" r " ) != std::string::npos)
445+ if (options.find (' r ' ) != std::string::npos)
446446 correlationHists.PSigmaXVsVar = directory->make <TProfile>(
447447 " p_sigma" + xY + " Vs" + varName,
448448 " #sigma_{r," + xy + " } vs. " + labelX + " ;" + labelX + " " + unitX + " ;#sigma_{r," + xy + " } [#mum]" ,
0 commit comments