Skip to content

Commit 9c53f57

Browse files
committed
code formatting
1 parent 03094cd commit 9c53f57

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

DQM/Physics/src/SingleTopTChannelLeptonDQM.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -452,8 +452,8 @@ namespace SingleTopTChannelLepton {
452452

453453
// d_xy distribution
454454
if (muon->muonBestTrack().isNonnull()) {
455-
double dxy = muon->muonBestTrack()->dxy(Pvertex.position());
456-
fill("muonDxy_", dxy);
455+
double dxy = muon->muonBestTrack()->dxy(Pvertex.position());
456+
fill("muonDxy_", dxy);
457457
}
458458

459459
// apply preselection

DQM/Physics/src/SingleTopTChannelLeptonDQM_miniAOD.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -517,11 +517,11 @@ namespace SingleTopTChannelLepton_miniAOD {
517517

518518
// d_xy distribution
519519
if (muon->muonBestTrack().isNonnull()) {
520-
double dxy = muon->dB(pat::Muon::PV2D);
521-
fill("muonDxy_", dxy);
520+
double dxy = muon->dB(pat::Muon::PV2D);
521+
fill("muonDxy_", dxy);
522522

523-
double dxyError = muon->edB(pat::Muon::PV2D);
524-
fill("muonDxyError_",dxyError);
523+
double dxyError = muon->edB(pat::Muon::PV2D);
524+
fill("muonDxyError_", dxyError);
525525
}
526526

527527
// apply preselection loose muon

DQM/Physics/src/TopSingleLeptonDQM.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ namespace TopSingleLepton {
274274
hists_["muonDelXY_"] = ibooker.book2D("MuonDelXY", "d_{xy}(#mu)", 50, -0.1, 0.1, 50, -0.1, 0.1);
275275
// dxy distribution for muons
276276
hists_["muonDxy_"] = ibooker.book1D("MuonDxy", "d_{xy}(#mu)", 100, -0.05, 0.05);
277-
277+
278278
// set axes titles for dxy for muons
279279
hists_["muonDelXY_"]->setAxisTitle("x [cm]", 1);
280280
hists_["muonDelXY_"]->setAxisTitle("y [cm]", 2);
@@ -465,8 +465,8 @@ namespace TopSingleLepton {
465465

466466
// d_xy distribution
467467
if (muon->muonBestTrack().isNonnull()) {
468-
double dxy = muon->muonBestTrack()->dxy(Pvertex.position());
469-
fill("muonDxy_", dxy);
468+
double dxy = muon->muonBestTrack()->dxy(Pvertex.position());
469+
fill("muonDxy_", dxy);
470470
}
471471

472472
// apply preselection

DQM/Physics/src/TopSingleLeptonDQM_miniAOD.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -497,15 +497,15 @@ namespace TopSingleLepton_miniAOD {
497497
if (muon->isGlobalMuon()) {
498498
fill("muonDelZ_", muon->innerTrack()->vz()); // CB using inner track!
499499
fill("muonDelXY_", muon->innerTrack()->vx(), muon->innerTrack()->vy());
500-
500+
501501
// d_xy distribution
502502
if (muon->muonBestTrack().isNonnull()) {
503503
double dxy = muon->dB(pat::Muon::PV2D);
504504
fill("muonDxy_", dxy);
505505

506506
double dxyError = muon->edB(pat::Muon::PV2D);
507-
fill("muonDxyError_",dxyError);
508-
}
507+
fill("muonDxyError_", dxyError);
508+
}
509509

510510
// apply preselection loose muon
511511
if (!muonSelect_ || (*muonSelect_)(*muon)) {

0 commit comments

Comments
 (0)