/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Validation/RecoVertex/interface/VertexHistogramMaker.h
97 строк
3 KB
Cms Build
Clang-Format
10 май 2019, 18:03
10 май 2019, 18:03
ad1ff36
Код
Авторство
О чём код?
#ifndef Validation_RecoVertex_VertexHistogramMaker_H #define Validation_RecoVertex_VertexHistogramMaker_H #include <string> #include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Framework/interface/ConsumesCollector.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "FWCore/Utilities/interface/EDGetToken.h" #include "DataFormats/VertexReco/interface/VertexFwd.h" #include "DPGAnalysis/SiStripTools/interface/RunHistogramManager.h" class TH1F; class TH2F; class TProfile; class TFileDirectory; namespace edm { class ConsumesCollector; } class LumiDetails; class VertexHistogramMaker { public: VertexHistogramMaker(edm::ConsumesCollector&& iC); VertexHistogramMaker(const edm::ParameterSet& iConfig, edm::ConsumesCollector&& iC); ~VertexHistogramMaker(); void book(const std::string dirname = ""); void beginRun(const edm::Run& iRun); void fill(const edm::Event& iEvent, const reco::VertexCollection& vertices, const double weight = 1.); private: void fill(const unsigned int orbit, const int bx, const float bxlumi, const reco::VertexCollection& vertices, const double weight = 1.); TFileDirectory* m_currdir; const unsigned int m_maxLS; const double m_weightThreshold; const bool m_trueOnly; const bool m_runHisto; const bool m_runHistoProfile; const bool m_runHistoBXProfile; const bool m_runHistoBXProfile2D; const bool m_runHisto2D; const bool m_bsConstrained; const edm::ParameterSet m_histoParameters; edm::EDGetTokenT<LumiDetails> m_lumiDetailsToken; RunHistogramManager m_rhm; RunHistogramManager m_fhm; TH1F* m_hnvtx; TH1F* m_hntruevtx; TProfile* m_hntruevtxvslumi; TH2D* m_hntruevtxvslumi2D; TH1F* m_hntracks; TH1F* m_hsqsumptsq; TH1F* m_hsqsumptsqheavy; TH1F* m_hnheavytracks; TH1F* m_hndof; TH1F* m_haveweight; TH2F* m_hndofvstracks; TProfile* m_hndofvsvtxz; TProfile* m_hntracksvsvtxz; TProfile* m_haveweightvsvtxz; TProfile* m_haveweightvsvtxzchk; TH1F* m_hweights; TH1F* m_hvtxx; TH1F* m_hvtxy; TH1F* m_hvtxz; TH1F** m_hvtxxrun; TH1F** m_hvtxyrun; TH1F** m_hvtxzrun; TProfile** m_hvtxxvsorbrun; TProfile** m_hvtxyvsorbrun; TProfile** m_hvtxzvsorbrun; TProfile** m_hnvtxvsorbrun; TProfile2D** m_hnvtxvsbxvsorbrun; TH2F** m_hnvtxvsorbrun2D; TProfile** m_hvtxxvsbxrun; TProfile** m_hvtxyvsbxrun; TProfile** m_hvtxzvsbxrun; TProfile** m_hnvtxvsbxrun; TProfile2D** m_hnvtxvsbxvslumirun; TH2F** m_hvtxxvsbx2drun; TH2F** m_hvtxyvsbx2drun; TH2F** m_hvtxzvsbx2drun; }; #endif // Validation_RecoVertex_VertexHistogramMaker_H