Skip to content

Commit a7454c6

Browse files
committed
Updated binning for sigma(TOF) validation histograms
Updated binning for sigma(TOF) validation histograms Updated binning for sigma(TOF) validation histograms
1 parent e0dc3be commit a7454c6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Validation/MtdValidation/plugins/MtdTracksValidation.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ void MtdTracksValidation::analyze(const edm::Event& iEvent, const edm::EventSetu
432432
meTrackt0SafePid_->Fill(t0Safe[trackref]);
433433
meTrackSigmat0SafePid_->Fill(Sigmat0Safe[trackref]);
434434
meTrackMVAQual_->Fill(mtdQualMVA[trackref]);
435-
435+
436436
meTrackSigmaTof_[0]->Fill(SigmaTofPi[trackref] * 1e3); //save as ps
437437
meTrackSigmaTof_[1]->Fill(SigmaTofK[trackref] * 1e3);
438438
meTrackSigmaTof_[2]->Fill(SigmaTofP[trackref] * 1e3);
@@ -951,11 +951,11 @@ void MtdTracksValidation::bookHistograms(DQMStore::IBooker& ibook, edm::Run cons
951951
"TrackPathLenghtvsEta", "MTD Track pathlength vs MTD track Eta;|#eta|;Pathlength", 100, 0, 3.2, 100.0, 400.0, "S");
952952

953953
meTrackSigmaTof_[0] =
954-
ibook.book1D("TrackSigmaTof_Pion", "Sigma(TOF) for pion hypothesis; #sigma_{t0} [ps]", 100, 0, 50);
954+
ibook.book1D("TrackSigmaTof_Pion", "Sigma(TOF) for pion hypothesis; #sigma_{t0} [ps]", 10, 0, 5);
955955
meTrackSigmaTof_[1] =
956-
ibook.book1D("TrackSigmaTof_Kaon", "Sigma(TOF) for kaon hypothesis; #sigma_{t0} [ps]", 100, 0, 50);
956+
ibook.book1D("TrackSigmaTof_Kaon", "Sigma(TOF) for kaon hypothesis; #sigma_{t0} [ps]", 25, 0, 25);
957957
meTrackSigmaTof_[2] =
958-
ibook.book1D("TrackSigmaTof_Proton", "Sigma(TOF) for proton hypothesis; #sigma_{t0} [ps]", 100, 0, 50);
958+
ibook.book1D("TrackSigmaTof_Proton", "Sigma(TOF) for proton hypothesis; #sigma_{t0} [ps]", 50, 0, 50);
959959

960960
meTrackSigmaTofvsP_[0] = ibook.bookProfile("TrackSigmaTofvsP_Pion",
961961
"Sigma(TOF) for pion hypothesis vs p; p [GeV]; #sigma_{t0} [ps]",

0 commit comments

Comments
 (0)