Skip to content

Commit

Permalink
Remove all the ocurrences of SetCanExtend from TrackAnalyzer
Browse files Browse the repository at this point in the history
  • Loading branch information
hbecerri committed Jul 22, 2019
1 parent 9c67587 commit 1fa1040
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions DQM/TrackingMonitor/src/TrackAnalyzer.cc
Expand Up @@ -863,7 +863,6 @@ void TrackAnalyzer::bookHistosForBeamSpot(DQMStore::IBooker& ibooker) {
histname = "DistanceOfClosestApproachToBSVsEta_";
DistanceOfClosestApproachToBSVsEta = ibooker.bookProfile(
histname + CategoryName, histname + CategoryName, EtaBin, EtaMin, EtaMax, DxyBin, DxyMin, DxyMax, "");
DistanceOfClosestApproachToBSVsEta->getTH1()->SetCanExtend(TH1::kAllAxes);
DistanceOfClosestApproachToBSVsEta->setAxisTitle("Track #eta", 1);
DistanceOfClosestApproachToBSVsEta->setAxisTitle("Track d_{xy} wrt beam spot (cm)", 2);
}
Expand All @@ -877,7 +876,6 @@ void TrackAnalyzer::bookHistosForBeamSpot(DQMStore::IBooker& ibooker) {
histname = "DistanceOfClosestApproachToBSVsPhi_";
DistanceOfClosestApproachToBSVsPhi = ibooker.bookProfile(
histname + CategoryName, histname + CategoryName, PhiBin, PhiMin, PhiMax, DxyBin, DxyMin, DxyMax, "");
DistanceOfClosestApproachToBSVsPhi->getTH1()->SetCanExtend(TH1::kAllAxes);
DistanceOfClosestApproachToBSVsPhi->setAxisTitle("Track #phi", 1);
DistanceOfClosestApproachToBSVsPhi->setAxisTitle("Track d_{xy} wrt beam spot (cm)", 2);

Expand Down Expand Up @@ -960,7 +958,6 @@ void TrackAnalyzer::bookHistosForBeamSpot(DQMStore::IBooker& ibooker) {
histname = "DistanceOfClosestApproachToPVVsPhi_";
DistanceOfClosestApproachToPVVsPhi = ibooker.bookProfile(
histname + CategoryName, histname + CategoryName, PhiBin, PhiMin, PhiMax, DxyBin, DxyMin, DxyMax, "");
DistanceOfClosestApproachToPVVsPhi->getTH1()->SetCanExtend(TH1::kAllAxes);
DistanceOfClosestApproachToPVVsPhi->setAxisTitle("Track #phi", 1);
DistanceOfClosestApproachToPVVsPhi->setAxisTitle("Track d_{xy} w.r.t. PV (cm)", 2);

Expand Down Expand Up @@ -996,7 +993,6 @@ void TrackAnalyzer::bookHistosForBeamSpot(DQMStore::IBooker& ibooker) {
histname = "TESTDistanceOfClosestApproachToBSVsPhi_";
TESTDistanceOfClosestApproachToBSVsPhi = ibooker.bookProfile(
histname + CategoryName, histname + CategoryName, PhiBin, PhiMin, PhiMax, DxyBin, DxyMin, DxyMax, "");
TESTDistanceOfClosestApproachToBSVsPhi->getTH1()->SetCanExtend(TH1::kAllAxes);
TESTDistanceOfClosestApproachToBSVsPhi->setAxisTitle("Track #phi", 1);
TESTDistanceOfClosestApproachToBSVsPhi->setAxisTitle("Track d_{xy} wrt beam spot (cm)", 2);
}
Expand Down Expand Up @@ -1047,7 +1043,6 @@ void TrackAnalyzer::bookHistosForBeamSpot(DQMStore::IBooker& ibooker) {
histname = "DistanceOfClosestApproachVsPhi_";
DistanceOfClosestApproachVsPhi = ibooker.bookProfile(
histname + CategoryName, histname + CategoryName, PhiBin, PhiMin, PhiMax, DxyMin, DxyMax, "");
DistanceOfClosestApproachVsPhi->getTH1()->SetCanExtend(TH1::kAllAxes);
DistanceOfClosestApproachVsPhi->setAxisTitle("Track #phi", 1);
DistanceOfClosestApproachVsPhi->setAxisTitle("Track d_{xy} wrt (0,0,0) (cm)", 2);
}
Expand Down

0 comments on commit 1fa1040

Please sign in to comment.