Skip to content

Commit

Permalink
Keep the minimal histograms for unmatched clusters
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocos committed Feb 24, 2022
1 parent f641616 commit 2c51320
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
6 changes: 0 additions & 6 deletions Validation/MtdValidation/plugins/BtlLocalRecoValidation.cc
Expand Up @@ -152,9 +152,7 @@ class BtlLocalRecoValidation : public DQMEDAnalyzer {
MonitorElement* meCluXLocalErr_;
MonitorElement* meCluYLocalErr_;

MonitorElement* meUnmatchedCluEta_;
MonitorElement* meUnmatchedCluEnergy_;
MonitorElement* meUnmatchedCluTime_;

// --- UncalibratedRecHits histograms

Expand Down Expand Up @@ -464,8 +462,6 @@ void BtlLocalRecoValidation::analyze(const edm::Event& iEvent, const edm::EventS
} // if ( cluTimeSIM > 0. && cluEneSIM > 0. )
else {
meUnmatchedCluEnergy_->Fill(cluster.energy());
meUnmatchedCluTime_->Fill(cluster.time());
meUnmatchedCluEta_->Fill(global_point.eta());
}

} // cluster loop
Expand Down Expand Up @@ -720,10 +716,8 @@ void BtlLocalRecoValidation::bookHistograms(DQMStore::IBooker& ibook,
meCluXLocalErr_ = ibook.book1D("BtlCluXLocalErr", "BTL cluster X local error;sigmaX_{RECO,loc} [cm]", 30, 0., 3.);
meCluYLocalErr_ = ibook.book1D("BtlCluYLocalErr", "BTL cluster Y local error;sigmaY_{RECO,loc} [cm]", 30, 0., 0.9);
}
meUnmatchedCluTime_ = ibook.book1D("BtlUnmatchedCluTime", "BTL unmatched cluster time ToA;ToA [ns]", 250, 0, 25);
meUnmatchedCluEnergy_ =
ibook.book1D("BtlUnmatchedCluEnergy", "BTL unmatched cluster energy;E_{RECO} [MeV]", 100, 0, 20);
meUnmatchedCluEta_ = ibook.book1D("BtlUnmatchedCluEta", "BTL unmatched cluster #eta;#eta_{RECO}", 100, -1.55, 1.55);

// --- UncalibratedRecHits histograms

Expand Down
12 changes: 0 additions & 12 deletions Validation/MtdValidation/plugins/EtlLocalRecoValidation.cc
Expand Up @@ -131,9 +131,7 @@ class EtlLocalRecoValidation : public DQMEDAnalyzer {
MonitorElement* meCluXLocalErr_[2];
MonitorElement* meCluYLocalErr_[2];

MonitorElement* meUnmatchedCluEta_[2];
MonitorElement* meUnmatchedCluEnergy_[2];
MonitorElement* meUnmatchedCluTime_[2];

// --- UncalibratedRecHits histograms

Expand Down Expand Up @@ -509,8 +507,6 @@ void EtlLocalRecoValidation::analyze(const edm::Event& iEvent, const edm::EventS
} // if ( cluTimeSIM > 0. && cluEneSIM > 0. )
else {
meUnmatchedCluEnergy_[iside]->Fill(cluster.energy());
meUnmatchedCluTime_[iside]->Fill(cluster.time());
meUnmatchedCluEta_[iside]->Fill(std::abs(global_point.eta()));
}

} // cluster loop
Expand Down Expand Up @@ -1056,18 +1052,10 @@ void EtlLocalRecoValidation::bookHistograms(DQMStore::IBooker& ibook,
meCluYLocalErr_[1] =
ibook.book1D("EtlCluYLocalErrPos", "ETL cluster Y local error (+Z);sigmaY_{RECO,loc} [cm]", 50, 0., 0.2);
}
meUnmatchedCluTime_[0] =
ibook.book1D("EtlUnmatchedCluTimeNeg", "ETL unmatched cluster time ToA (-Z);ToA [ns]", 250, 0, 25);
meUnmatchedCluTime_[1] =
ibook.book1D("EtlUnmatchedCluTimePos", "ETL unmatched cluster time ToA (+Z);ToA [ns]", 250, 0, 25);
meUnmatchedCluEnergy_[0] =
ibook.book1D("EtlUnmatchedCluEnergyNeg", "ETL unmatched cluster energy (-Z);E_{RECO} [MeV]", 100, 0, 20);
meUnmatchedCluEnergy_[1] =
ibook.book1D("EtlUnmatchedCluEnergyPos", "ETL unmatched cluster energy (+Z);E_{RECO} [MeV]", 100, 0, 20);
meUnmatchedCluEta_[0] =
ibook.book1D("EtlUnmatchedCluEtaNeg", "ETL unmatched cluster |#eta| (-Z);#eta_{RECO}", 100, 1.55, 3.1);
meUnmatchedCluEta_[1] =
ibook.book1D("EtlUnmatchedCluEtaPos", "ETL unmatched cluster |#eta| (+Z);#eta_{RECO}", 100, 1.55, 3.1);

// --- UncalibratedRecHits histograms

Expand Down

0 comments on commit 2c51320

Please sign in to comment.